diff options
author | paulg@google.com <paulg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-26 00:18:27 +0000 |
---|---|---|
committer | paulg@google.com <paulg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-26 00:18:27 +0000 |
commit | 7ab49572bb55d092e757dc04a0c8ecafaf893e16 (patch) | |
tree | 95c318fd8dcb0c7befbbc849bd91c4ef2a1bd87e /chrome/common/chrome_switches.cc | |
parent | 6705b23f96dc6953abe9911907a8d25d924e5e7f (diff) | |
download | chromium_src-7ab49572bb55d092e757dc04a0c8ecafaf893e16.zip chromium_src-7ab49572bb55d092e757dc04a0c8ecafaf893e16.tar.gz chromium_src-7ab49572bb55d092e757dc04a0c8ecafaf893e16.tar.bz2 |
Turn on the new SafeBrowsing by default. To use the older
implemenation, use the command line flag: --old-safe-browsing
Review URL: http://codereview.chromium.org/12448
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6015 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index cafb6f1..4681f00 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -336,10 +336,9 @@ const wchar_t kEnableGreasemonkey[] = L"enable-greasemonkey"; // Causes the browser to launch directly in incognito mode. const wchar_t kIncognito[] = L"incognito"; -// Turn on an experimental implementation of SafeBrowsing which improves -// performance during updates by avoiding the enormous IO from SQLite -// operations. -const wchar_t kUseNewSafeBrowsing[] = L"new-safe-browsing"; +// Turn on the old implementation of SafeBrowsing which may have performance +// problems on some computers during updates. +const wchar_t kUseOldSafeBrowsing[] = L"old-safe-browsing"; // Turns on the accessibility in the renderer. Off by default until // http://b/issue?id=1432077 is fixed. |