diff options
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 c4ef460..8874a29 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 UNDEFINED_AP_M: return "RM"; - case UNDEFINED_AP_N: return "RN"; + case CHROME_IOS_OMNIBOX: return "RM"; + case CHROME_IOS_HOME_PAGE: return "RN"; 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 0fd0513..08d8bbb 100644 --- a/rlz/lib/rlz_enums.h +++ b/rlz/lib/rlz_enums.h @@ -62,11 +62,12 @@ enum AccessPoint { CHROMEOS_HOME_PAGE, // ChromeOS searches through Google as home page. 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). + // 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_M, - UNDEFINED_AP_N, UNDEFINED_AP_O, UNDEFINED_AP_P, UNDEFINED_AP_Q, |