diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-13 17:49:20 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-13 17:49:20 +0000 |
commit | 2086a3da7b13a837035f0df29b12fbb5c49fc120 (patch) | |
tree | a6ad18e51279f97ca537bb71943bb3af6e6f5755 /sync/internal_api/http_bridge_unittest.cc | |
parent | 4ee339187a813ac7d4cb67e2755384a64343c617 (diff) | |
download | chromium_src-2086a3da7b13a837035f0df29b12fbb5c49fc120.zip chromium_src-2086a3da7b13a837035f0df29b12fbb5c49fc120.tar.gz chromium_src-2086a3da7b13a837035f0df29b12fbb5c49fc120.tar.bz2 |
Reland 167337 - Move url_request_test_util into net namespace
This file contains some rather generic names like "TestDelegate". Move it to the
net namespace to avoid collisions
BUG=none
TBR=wtc@chromium.org,darin@chromium.org
Original Review URL: https://codereview.chromium.org/11369179
Review URL: https://chromiumcodereview.appspot.com/11365227
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167413 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/internal_api/http_bridge_unittest.cc')
-rw-r--r-- | sync/internal_api/http_bridge_unittest.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sync/internal_api/http_bridge_unittest.cc b/sync/internal_api/http_bridge_unittest.cc index bd2e0f8..5dae475 100644 --- a/sync/internal_api/http_bridge_unittest.cc +++ b/sync/internal_api/http_bridge_unittest.cc @@ -48,7 +48,7 @@ class SyncHttpBridgeTest : public testing::Test { HttpBridge* BuildBridge() { if (!fake_default_request_context_getter_) { fake_default_request_context_getter_ = - new TestURLRequestContextGetter(io_thread_.message_loop_proxy()); + new net::TestURLRequestContextGetter(io_thread_.message_loop_proxy()); fake_default_request_context_getter_->AddRef(); } HttpBridge* bridge = new HttpBridge( @@ -86,7 +86,7 @@ class SyncHttpBridgeTest : public testing::Test { } // Note this is lazy created, so don't call this before your bridge. - TestURLRequestContextGetter* GetTestRequestContextGetter() { + net::TestURLRequestContextGetter* GetTestRequestContextGetter() { return fake_default_request_context_getter_; } @@ -99,7 +99,7 @@ class SyncHttpBridgeTest : public testing::Test { private: // A make-believe "default" request context, as would be returned by // Profile::GetDefaultRequestContext(). Created lazily by BuildBridge. - TestURLRequestContextGetter* fake_default_request_context_getter_; + net::TestURLRequestContextGetter* fake_default_request_context_getter_; HttpBridge* bridge_for_race_test_; @@ -157,7 +157,7 @@ void SyncHttpBridgeTest::RunSyncThreadBridgeUseTest( base::WaitableEvent* signal_when_created, base::WaitableEvent* signal_when_released) { scoped_refptr<net::URLRequestContextGetter> ctx_getter( - new TestURLRequestContextGetter(io_thread_.message_loop_proxy())); + new net::TestURLRequestContextGetter(io_thread_.message_loop_proxy())); { scoped_refptr<ShuntedHttpBridge> bridge(new ShuntedHttpBridge( ctx_getter, this, true)); @@ -187,7 +187,7 @@ TEST_F(SyncHttpBridgeTest, TestUsesSameHttpNetworkSession) { // Test the HttpBridge without actually making any network requests. TEST_F(SyncHttpBridgeTest, TestMakeSynchronousPostShunted) { scoped_refptr<net::URLRequestContextGetter> ctx_getter( - new TestURLRequestContextGetter(io_thread()->message_loop_proxy())); + new net::TestURLRequestContextGetter(io_thread()->message_loop_proxy())); scoped_refptr<HttpBridge> http_bridge(new ShuntedHttpBridge( ctx_getter, this, false)); http_bridge->SetURL("http://www.google.com", 9999); @@ -309,7 +309,7 @@ TEST_F(SyncHttpBridgeTest, TestResponseHeader) { TEST_F(SyncHttpBridgeTest, Abort) { scoped_refptr<net::URLRequestContextGetter> ctx_getter( - new TestURLRequestContextGetter(io_thread()->message_loop_proxy())); + new net::TestURLRequestContextGetter(io_thread()->message_loop_proxy())); scoped_refptr<ShuntedHttpBridge> http_bridge(new ShuntedHttpBridge( ctx_getter, this, true)); http_bridge->SetURL("http://www.google.com", 9999); @@ -328,7 +328,7 @@ TEST_F(SyncHttpBridgeTest, Abort) { TEST_F(SyncHttpBridgeTest, AbortLate) { scoped_refptr<net::URLRequestContextGetter> ctx_getter( - new TestURLRequestContextGetter(io_thread()->message_loop_proxy())); + new net::TestURLRequestContextGetter(io_thread()->message_loop_proxy())); scoped_refptr<ShuntedHttpBridge> http_bridge(new ShuntedHttpBridge( ctx_getter, this, false)); http_bridge->SetURL("http://www.google.com", 9999); |