diff options
author | ukai@chromium.org <ukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 03:59:31 +0000 |
---|---|---|
committer | ukai@chromium.org <ukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 03:59:31 +0000 |
commit | d3f46585fdf14a7f69f12b97a86396e0efdb8773 (patch) | |
tree | ab73b5cd1d789819ef2ddcbd9ab513b92b0e4e3e /chrome/common/pref_names.cc | |
parent | da7b0ccbf9488b5c7ba091cb3ae381b8b4f98c06 (diff) | |
download | chromium_src-d3f46585fdf14a7f69f12b97a86396e0efdb8773.zip chromium_src-d3f46585fdf14a7f69f12b97a86396e0efdb8773.tar.gz chromium_src-d3f46585fdf14a7f69f12b97a86396e0efdb8773.tar.bz2 |
Monitor network change in GoogleURLTracker
BUG=48688,15141
TEST=GoogleURLTrackerTest.MonitorNetworkChange passes
Review URL: http://codereview.chromium.org/3034018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56483 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 40183d1..75086de 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -763,6 +763,12 @@ const char kShouldShowWelcomePage[] = "show-welcome-page"; // correct Google domain/country code for whatever location the user is in. const char kLastKnownGoogleURL[] = "browser.last_known_google_url"; +// String containing the last prompted Google URL to the user. +// If the user is using .x TLD for Google URL and gets prompted about .y TLD +// for Google URL, and says "no", we should leave the search engine set to .x +// but not prompt again until the domain changes away from .y. +const char kLastPromptedGoogleURL[] = "browser.last_prompted_google_url"; + // String containing the last known intranet redirect URL, if any. See // intranet_redirect_detector.h for more information. const char kLastKnownIntranetRedirectOrigin[] = ""; |