diff options
author | eustas@chromium.org <eustas@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-02 16:03:08 +0000 |
---|---|---|
committer | eustas@chromium.org <eustas@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-02 16:03:08 +0000 |
commit | a4205207e8e6bba4ebe0946b9d0b34abe946065f (patch) | |
tree | d3eb03bd5a2b18d30be9a887bc0291e4a93ce455 /net/url_request | |
parent | dbe9bfab6e9b264b1b339e8c1c422f0b5dfa2a6c (diff) | |
download | chromium_src-a4205207e8e6bba4ebe0946b9d0b34abe946065f.zip chromium_src-a4205207e8e6bba4ebe0946b9d0b34abe946065f.tar.gz chromium_src-a4205207e8e6bba4ebe0946b9d0b34abe946065f.tar.bz2 |
Add the ability for DevTools to wrap network transactions.
The eventual goal is to allow it to simulate flaky network connections.
Docs:
https://docs.google.com/a/google.com/document/d/1SkuWqLYIUpMDI05n7vgx8zdkunyUsxGs9tvUPDOqEJY/edit
https://docs.google.com/a/google.com/document/d/19O_UeUfCFZg5cEnH5jkkZ6_tqsfaLQLYUEIGyXw3oTo/edit
BUG=245436
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=273584
Review URL: https://codereview.chromium.org/182993003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274253 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request')
-rw-r--r-- | net/url_request/view_cache_helper_unittest.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/url_request/view_cache_helper_unittest.cc b/net/url_request/view_cache_helper_unittest.cc index 0fdd193..70bf201 100644 --- a/net/url_request/view_cache_helper_unittest.cc +++ b/net/url_request/view_cache_helper_unittest.cc @@ -9,6 +9,7 @@ #include "net/base/test_completion_callback.h" #include "net/disk_cache/disk_cache.h" #include "net/http/http_cache.h" +#include "net/http/http_transaction_test_util.h" #include "net/url_request/url_request_context.h" #include "testing/gtest/include/gtest/gtest.h" @@ -29,7 +30,7 @@ class TestURLRequestContext : public URLRequestContext { }; TestURLRequestContext::TestURLRequestContext() - : cache_(reinterpret_cast<HttpTransactionFactory*>(NULL), NULL, + : cache_(new MockNetworkLayer(), NULL, HttpCache::DefaultBackend::InMemory(0)) { set_http_transaction_factory(&cache_); } |