summaryrefslogtreecommitdiffstats
path: root/net/base/load_flags.h
diff options
context:
space:
mode:
authorjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-30 23:06:01 +0000
committerjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-30 23:06:01 +0000
commit5b90b5d3473f3f846618092e79d4c5fcff7d3969 (patch)
tree2d8c6e9118f8062399e6a89103e212d78479938e /net/base/load_flags.h
parent6165e2ab4af4c217e21c0ec167b7eced8fca491c (diff)
downloadchromium_src-5b90b5d3473f3f846618092e79d4c5fcff7d3969.zip
chromium_src-5b90b5d3473f3f846618092e79d4c5fcff7d3969.tar.gz
chromium_src-5b90b5d3473f3f846618092e79d4c5fcff7d3969.tar.bz2
Hand craft an A/B test of SDCH compression
After we're sure we can do SDCH compression to a given URL, toss a 50-50 coin each time we have a chance to advertise SDCH, and either completely avoid advertisement, or advertise (including the dictionary). Histogram both compression download times, as well as the download times for the "completely avoid" case. http://crbug.com/11236 bug=11236 r=wtc,openvcdiff Review URL: http://codereview.chromium.org/100004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15010 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/load_flags.h')
-rw-r--r--net/base/load_flags.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/net/base/load_flags.h b/net/base/load_flags.h
index c2c0d20..09851ec 100644
--- a/net/base/load_flags.h
+++ b/net/base/load_flags.h
@@ -66,16 +66,12 @@ enum {
// cookies or updating existing ones.
LOAD_DO_NOT_SAVE_COOKIES = 1 << 13,
- // An SDCH dictionary was advertised, and an SDCH encoded response is
- // possible.
- LOAD_SDCH_DICTIONARY_ADVERTISED = 1 << 14,
-
// Do not resolve proxies. This override is used when downloading PAC files
// to avoid having a circular dependency.
- LOAD_BYPASS_PROXY = 1 << 15,
+ LOAD_BYPASS_PROXY = 1 << 14,
// Indicate this request is for a download, as opposed to viewing.
- LOAD_IS_DOWNLOAD = 1 << 16,
+ LOAD_IS_DOWNLOAD = 1 << 15,
};
} // namespace net