diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-03 18:35:53 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-03 18:35:53 +0000 |
commit | b935e7a86084ba9109b84e7a52adc22f24752fd1 (patch) | |
tree | d6fee120f271a558b175ca797ee3e87a05c2f835 /rlz/lib | |
parent | 60263c7c1dc2a91a8a4cab8b92ae9f184f8176fa (diff) | |
download | chromium_src-b935e7a86084ba9109b84e7a52adc22f24752fd1.zip chromium_src-b935e7a86084ba9109b84e7a52adc22f24752fd1.tar.gz chromium_src-b935e7a86084ba9109b84e7a52adc22f24752fd1.tar.bz2 |
rlz: Change omnibox / homepage access points from C1/C2 to C5/C6 on mac
BUG=134939
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10698024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145337 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'rlz/lib')
-rw-r--r-- | rlz/lib/lib_values.cc | 4 | ||||
-rw-r--r-- | rlz/lib/rlz_enums.h | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/rlz/lib/lib_values.cc b/rlz/lib/lib_values.cc index 467e4568..68b91d8 100644 --- a/rlz/lib/lib_values.cc +++ b/rlz/lib/lib_values.cc @@ -93,8 +93,8 @@ const char* GetAccessPointName(AccessPoint point) { case PARTNER_AP_3: return "V3"; case PARTNER_AP_4: return "V4"; case PARTNER_AP_5: return "V5"; - case UNDEFINED_AP_H: return "RH"; - case UNDEFINED_AP_I: return "RI"; + case CHROME_MAC_OMNIBOX: return "C5"; + case CHROME_MAC_HOME_PAGE: return "C6"; case UNDEFINED_AP_J: return "RJ"; case UNDEFINED_AP_K: return "RK"; case UNDEFINED_AP_L: return "RL"; diff --git a/rlz/lib/rlz_enums.h b/rlz/lib/rlz_enums.h index 4fc60ff..630db11 100644 --- a/rlz/lib/rlz_enums.h +++ b/rlz/lib/rlz_enums.h @@ -55,11 +55,12 @@ enum AccessPoint { PARTNER_AP_4, PARTNER_AP_5, + CHROME_MAC_OMNIBOX, // Chrome searches through the address bar omnibox (mac). + CHROME_MAC_HOME_PAGE,// Chrome searches through Google as home page (mac). + // 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; // this acts as a check to ensure we don't have collisions. - UNDEFINED_AP_H, - UNDEFINED_AP_I, UNDEFINED_AP_J, UNDEFINED_AP_K, UNDEFINED_AP_L, |