diff options
author | hshi@chromium.org <hshi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-15 18:50:46 +0000 |
---|---|---|
committer | hshi@chromium.org <hshi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-15 18:50:46 +0000 |
commit | 099f9c7d29ad787ed2e5990eb9981b72cdb04463 (patch) | |
tree | 7b1821e80078d12e7c991bf6c312117352641741 /rlz | |
parent | 57245382d1566e9da47bd92386307d0e4a08ef48 (diff) | |
download | chromium_src-099f9c7d29ad787ed2e5990eb9981b72cdb04463.zip chromium_src-099f9c7d29ad787ed2e5990eb9981b72cdb04463.tar.gz chromium_src-099f9c7d29ad787ed2e5990eb9981b72cdb04463.tar.bz2 |
Revert 263828 "Do not reserve an access point code for CHROME_IO..."
> Do not reserve an access point code for CHROME_IOS_RESERVED
>
> Access point values need to be coordinated with the team using them. Since
> CHROME_IOS_RESERVED is not used, do not reserve an access point for that
> enum, and instead assert if it is ever used.
>
> BUG=360686
>
> Review URL: https://codereview.chromium.org/237273002
TBR=sdefresne@chromium.org
Review URL: https://codereview.chromium.org/239633002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263952 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'rlz')
-rw-r--r-- | rlz/lib/lib_values.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rlz/lib/lib_values.cc b/rlz/lib/lib_values.cc index 586194a..06113a8 100644 --- a/rlz/lib/lib_values.cc +++ b/rlz/lib/lib_values.cc @@ -99,9 +99,7 @@ const char* GetAccessPointName(AccessPoint point) { case CHROMEOS_HOME_PAGE: return "CB"; case CHROMEOS_APP_LIST: return "CC"; case CHROME_IOS_OMNIBOX: return "C9"; - // Note: this enumeration does not correspond to a real access point and - // should never be used. Fails back to the default that raises an assert. - case CHROME_IOS_RESERVED: break; + 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"; |