diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-24 17:59:31 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-24 17:59:31 +0000 |
commit | 21f659de19e3ea874a0958372a311746a0e764c2 (patch) | |
tree | ed614625bb19dc6d981682b4af0e1462ccfb05e5 /chrome/common/chrome_switches.cc | |
parent | ee2eb89954c440c9249a3bf34e6960526e2f490b (diff) | |
download | chromium_src-21f659de19e3ea874a0958372a311746a0e764c2.zip chromium_src-21f659de19e3ea874a0958372a311746a0e764c2.tar.gz chromium_src-21f659de19e3ea874a0958372a311746a0e764c2.tar.bz2 |
Http cache: Enable experimental support for byte range requests.
Requires --enable-byte-range-support
BUG=12258
TEST=covered by unit tests.
Review URL: http://codereview.chromium.org/173231
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24113 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index c62c4db..a232be0 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -591,4 +591,7 @@ const wchar_t kSyncServiceURL[] = L"sync-url"; const wchar_t kCookiePipe[] = L"cookie-pipe"; #endif +// Enable experimental support for cached byte-ranges. +const wchar_t kEnableByteRangeSupport[] = L"enable-byte-range-support"; + } // namespace switches |