From d85f2d9363429ec16491e06170419e02977ea2bb Mon Sep 17 00:00:00 2001 From: "droger@chromium.org" Date: Tue, 15 Apr 2014 14:11:35 +0000 Subject: Merge 262679 "Change access point for Chrome on iOS" > 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 TBR=sdefresne@chromium.org Review URL: https://codereview.chromium.org/238293004 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@263835 0039d316-1c4b-4281-b951-d872f2087c98 --- rlz/lib/lib_values.cc | 4 ++-- rlz/lib/rlz_enums.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'rlz/lib') diff --git a/rlz/lib/lib_values.cc b/rlz/lib/lib_values.cc index 8874a29..12bf457 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_RESERVED: 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 UNDEFINED_AP_O: return "RO"; case UNDEFINED_AP_P: return "RP"; case UNDEFINED_AP_Q: return "RQ"; diff --git a/rlz/lib/rlz_enums.h b/rlz/lib/rlz_enums.h index 08d8bbb..baf176b 100644 --- a/rlz/lib/rlz_enums.h +++ b/rlz/lib/rlz_enums.h @@ -63,7 +63,7 @@ enum AccessPoint { CHROMEOS_RESERVED, // Reserved for ChromeOS. 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. // Unclaimed access points - should be used first before creating new APs. // Please also make sure you re-name the enum before using an unclaimed value; -- cgit v1.1