diff options
author | sdefresne@chromium.org <sdefresne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-09 13:04:55 +0000 |
---|---|---|
committer | sdefresne@chromium.org <sdefresne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-09 13:04:55 +0000 |
commit | 0c9052ee54f48b9813ddfbd018902e5029a97160 (patch) | |
tree | 4f1188ac4f62630b4773d842119d30fefca2443c /rlz | |
parent | 6b7f960211ac6d31e3b8d450e8233affee1227c2 (diff) | |
download | chromium_src-0c9052ee54f48b9813ddfbd018902e5029a97160.zip chromium_src-0c9052ee54f48b9813ddfbd018902e5029a97160.tar.gz chromium_src-0c9052ee54f48b9813ddfbd018902e5029a97160.tar.bz2 |
Change access point for Chrome on iOS
Use the access point C9* for the Omnibox for Chrome on iOS instead of
the reserved access point RM*.
Chrome on iOS does not have a notion of homepage, so remove the access
point corresponding to homepage on iOS (CHROME_HOME_PAGE) and the iOS
specific enumeration value (CHROME_IOS_HOME_PAGE).
BUG=360686
Review URL: https://codereview.chromium.org/225293007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262679 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'rlz')
-rw-r--r-- | rlz/lib/lib_values.cc | 4 | ||||
-rw-r--r-- | rlz/lib/rlz_enums.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/rlz/lib/lib_values.cc b/rlz/lib/lib_values.cc index 8047a9a..06113a8 100644 --- a/rlz/lib/lib_values.cc +++ b/rlz/lib/lib_values.cc @@ -98,8 +98,8 @@ const char* GetAccessPointName(AccessPoint point) { case CHROMEOS_OMNIBOX: return "CA"; case CHROMEOS_HOME_PAGE: return "CB"; case CHROMEOS_APP_LIST: return "CC"; - case CHROME_IOS_OMNIBOX: return "RM"; - case CHROME_IOS_HOME_PAGE: return "RN"; + case CHROME_IOS_OMNIBOX: return "C9"; + case CHROME_IOS_RESERVED: return "C0"; case CHROME_APP_LIST: return "C7"; case CHROME_MAC_APP_LIST: return "C8"; case UNDEFINED_AP_Q: return "RQ"; diff --git a/rlz/lib/rlz_enums.h b/rlz/lib/rlz_enums.h index 3bfcf64..e50ac2f 100644 --- a/rlz/lib/rlz_enums.h +++ b/rlz/lib/rlz_enums.h @@ -63,7 +63,7 @@ enum AccessPoint { CHROMEOS_APP_LIST, // ChromeOS searches through the app launcher search box. CHROME_IOS_OMNIBOX, // Chrome searches through the address bar omnibox (iOS). - CHROME_IOS_HOME_PAGE,// Chrome searches through Google as home page (iOS). + CHROME_IOS_RESERVED, // Reserved for Chrome on iOS. CHROME_APP_LIST, // Chrome searches through the app launcher search box. CHROME_MAC_APP_LIST, // Chrome searches through the app launcher search box |