diff options
author | munjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 23:20:29 +0000 |
---|---|---|
committer | munjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 23:20:29 +0000 |
commit | bb95ef9e93adfba1f5ab46de4ae9d523f12ca31c (patch) | |
tree | 5916529ffa051b8b17bb007710ea23b0ab1b80fb /chrome/common | |
parent | 80dc5f272b75cddfbb43dc78653cd8ec6a858c54 (diff) | |
download | chromium_src-bb95ef9e93adfba1f5ab46de4ae9d523f12ca31c.zip chromium_src-bb95ef9e93adfba1f5ab46de4ae9d523f12ca31c.tar.gz chromium_src-bb95ef9e93adfba1f5ab46de4ae9d523f12ca31c.tar.bz2 |
Add a command-line disable-p13n and use that to disable
p13n related features.
Review URL: http://codereview.chromium.org/39029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11050 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 2 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index cf47946..84cc70f 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -351,7 +351,7 @@ const wchar_t kEnableFastback[] = L"enable-fastback"; // Allow loading of the javascript debugger UI from the filesystem. const wchar_t kJavaScriptDebuggerPath[] = L"javascript-debugger-path"; -const wchar_t kEnableP13n[] = L"enable-p13n"; +const wchar_t kDisableP13n[] = L"disable-p13n"; // Enable support for SDCH filtering (dictionary based expansion of content). // Optional argument is *the* only domain name that will have SDCH suppport. diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index 578fc71..7836637 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -130,7 +130,7 @@ extern const wchar_t kEnableFastback[]; extern const wchar_t kJavaScriptDebuggerPath[]; -extern const wchar_t kEnableP13n[]; +extern const wchar_t kDisableP13n[]; extern const wchar_t kSdchFilter[]; |