diff options
author | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-17 01:55:42 +0000 |
---|---|---|
committer | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-17 01:55:42 +0000 |
commit | 4ec0cd19d253161aa42d0f9583da8f0886dff7c9 (patch) | |
tree | f3e1a80019df96acefa83ab2ed28eaabf02ffa9b /net/proxy/proxy_script_fetcher.h | |
parent | 4dae50509ea8f29c215e62b351911ecb6d234023 (diff) | |
download | chromium_src-4ec0cd19d253161aa42d0f9583da8f0886dff7c9.zip chromium_src-4ec0cd19d253161aa42d0f9583da8f0886dff7c9.tar.gz chromium_src-4ec0cd19d253161aa42d0f9583da8f0886dff7c9.tar.bz2 |
Temp experiment to confirm theory in crbug.com/5555.
The idea is that by using a comparator which has an (initialized) data member, pop() will avoid a sideffect that reads uninitialized data.
Will revert this once it has run on bot.
Review URL: http://codereview.chromium.org/14500
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7125 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/proxy_script_fetcher.h')
-rw-r--r-- | net/proxy/proxy_script_fetcher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/proxy/proxy_script_fetcher.h b/net/proxy/proxy_script_fetcher.h index 3792cab..fddbd7b 100644 --- a/net/proxy/proxy_script_fetcher.h +++ b/net/proxy/proxy_script_fetcher.h @@ -50,8 +50,8 @@ class ProxyScriptFetcher { // Testing helpers (only available to unit-tests). // -------------------------------------------------------------------------- private: - FRIEND_TEST(ProxyScriptFetcherTest, DISABLED_Hang); - FRIEND_TEST(ProxyScriptFetcherTest, DISABLED_TooLarge); + FRIEND_TEST(ProxyScriptFetcherTest, Hang); + FRIEND_TEST(ProxyScriptFetcherTest, TooLarge); // Sets the maximum duration for a fetch to |timeout_ms|. Returns the previous // bound. |