summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-01 22:26:59 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-01 22:26:59 +0000
commitf4145d43019e7ba00c539e54ac7fb57944f17915 (patch)
tree89fbbbd6b2830f65a03d2bdd5f154961f237c51d /chrome/common
parent0e095be478b9205fe1a6725ac6eebf2de7185c8d (diff)
downloadchromium_src-f4145d43019e7ba00c539e54ac7fb57944f17915.zip
chromium_src-f4145d43019e7ba00c539e54ac7fb57944f17915.tar.gz
chromium_src-f4145d43019e7ba00c539e54ac7fb57944f17915.tar.bz2
Flip omnibox2 popup on by default for more testing.
Review URL: http://codereview.chromium.org/115980 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17363 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.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 622893e..a319b70 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -442,8 +442,8 @@ const wchar_t kAutoSpellCorrect[] = L"auto-spell-correct";
// Enables StatsTable, logging statistics to a global named shared memory table.
const wchar_t kEnableStatsTable[] = L"enable-stats-table";
-// Enables the Omnibox2 popup and functionality.
-const wchar_t kEnableOmnibox2[] = L"enable-omnibox2";
+// Disables the Omnibox2 popup and functionality.
+const wchar_t kDisableOmnibox2[] = L"disable-omnibox2";
// Replaces the audio IPC layer for <audio> and <video> with a mock audio
// device, useful when using remote desktop or machines without sound cards.
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index 5a5c6cb..955eafa 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -170,7 +170,7 @@ extern const wchar_t kEnableStatsTable[];
extern const wchar_t kAutoSpellCorrect[];
-extern const wchar_t kEnableOmnibox2[];
+extern const wchar_t kDisableOmnibox2[];
extern const wchar_t kDisableAudio[];
extern const wchar_t kSimpleDataSource[];