Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // FIXME: quick search, need to be customized by setting
  2. if (url.length() > 2 && url.charAt(1) == ' ') {
  3. switch (url.charAt(0)) {
  4. case 'g': return SHORTCUT_GOOGLE_SEARCH;
  5. case 'w': return SHORTCUT_WIKIPEDIA_SEARCH;
  6. case 'd': return SHORTCUT_DICTIONARY_SEARCH;
  7. case 'l': return SHORTCUT_GOOGLE_MOBILE_LOCAL_SEARCH;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement