diff options
author | tommycli@chromium.org <tommycli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 22:47:39 +0000 |
---|---|---|
committer | tommycli@chromium.org <tommycli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 22:47:39 +0000 |
commit | 6a8ab1dceba32f021f112ce62c8ac80d70e658c3 (patch) | |
tree | 501d1c586c2260c3e85bf8f8ad75a27a2a207c54 /chrome/common | |
parent | 52964610aceab2646985efa765927a52a3eab8fa (diff) | |
download | chromium_src-6a8ab1dceba32f021f112ce62c8ac80d70e658c3.zip chromium_src-6a8ab1dceba32f021f112ce62c8ac80d70e658c3.tar.gz chromium_src-6a8ab1dceba32f021f112ce62c8ac80d70e658c3.tar.bz2 |
Componentize component_updater: Use Configurator to build query parameters.
This also breaks a few more misc. bonds between chrome/common and component_updater.
BUG=371463
Review URL: https://codereview.chromium.org/375973003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282444 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/pref_names.cc | 7 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 4 |
2 files changed, 0 insertions, 11 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 565beb9..08636ed 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -2099,13 +2099,6 @@ const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; const char kAttemptedToEnableAutoupdate[] = "browser.attempted_to_enable_autoupdate"; -#if defined(OS_WIN) -// The number of attempts left to execute the SwReporter. This starts at the max -// number of retries allowed, and goes down as attempts are made and is cleared -// back to 0 when it successfully completes. -const char kSwReporterExecuteTryCount[] = "software_reporter.execute_try_count"; -#endif - // The next media gallery ID to assign. const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index d336f65..d78ab48 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -729,10 +729,6 @@ extern const char kMessageCenterForcedOnTaskbar[]; extern const char kAttemptedToEnableAutoupdate[]; -#if defined(OS_WIN) -extern const char kSwReporterExecuteTryCount[]; -#endif - extern const char kMediaGalleriesUniqueId[]; extern const char kMediaGalleriesRememberedGalleries[]; extern const char kMediaGalleriesLastScanTime[]; |