summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 19:15:37 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 19:15:37 +0000
commit7603d7f7d625bd27aa98fbdd28b8cff83344f66f (patch)
treeaa2c6325792255464122043fd65259cf21232ec0 /chrome/common
parenta9f2b293243afb1b3508ffe9936d0cbd7bcbb243 (diff)
downloadchromium_src-7603d7f7d625bd27aa98fbdd28b8cff83344f66f.zip
chromium_src-7603d7f7d625bd27aa98fbdd28b8cff83344f66f.tar.gz
chromium_src-7603d7f7d625bd27aa98fbdd28b8cff83344f66f.tar.bz2
Remove the disable metrics command line flag, which is no longer used for
anything. This flag was leftover from initial product development when there was no opt-in preference for enabling the metrics service. The only user was a ChromeFrame unit test which I modified to use a different one that has the same effect. BUG=none TEST=none Review URL: http://codereview.chromium.org/1290004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_switches.cc4
-rw-r--r--chrome/common/chrome_switches.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index feaf3a9..7767231 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -134,10 +134,6 @@ const char kDisableLocalStorage[] = "disable-local-storage";
// builds.
const char kDisableLogging[] = "disable-logging";
-// Does nothing, use the preferences to see if the user has enabled metrics.
-// TODO(brettw) bug 39224: remove this constant.
-const char kDisableMetrics[] = "disable-metrics";
-
// Whether we should prevent the new tab page from showing the first run
// notification.
const char kDisableNewTabFirstRun[] = "disable-new-tab-first-run";
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index 06cdaf3..f1997b9 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -53,7 +53,6 @@ extern const char kDisableJavaScript[];
extern const char kDisableJava[];
extern const char kDisableLocalStorage[];
extern const char kDisableLogging[];
-extern const char kDisableMetrics[];
extern const char kDisableNewTabFirstRun[];
extern const char kDisablePlugins[];
extern const char kDisablePopupBlocking[];