Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Unified Diff: net/spdy/spdy_test_util.h

Issue 6322003: net: Remove prefix net:: from some places that already are in namespace net. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket_stream/socket_stream_job.h ('k') | net/websockets/websocket_job_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_test_util.h
diff --git a/net/spdy/spdy_test_util.h b/net/spdy/spdy_test_util.h
index 96ce5de1091eaca017bcead291a80a1bf520d633..698d5117096a9c7e26bf5bb9172a82d08e8e7a69 100644
--- a/net/spdy/spdy_test_util.h
+++ b/net/spdy/spdy_test_util.h
@@ -397,7 +397,7 @@ class SpdySessionDependencies {
}
};
-class SpdyURLRequestContext : public net::URLRequestContext {
+class SpdyURLRequestContext : public URLRequestContext {
public:
SpdyURLRequestContext() {
host_resolver_ = new MockHostResolver();
@@ -406,7 +406,7 @@ class SpdyURLRequestContext : public net::URLRequestContext {
ssl_config_service_ = new SSLConfigServiceDefaults;
http_auth_handler_factory_ = HttpAuthHandlerFactory::CreateDefault(
host_resolver_);
- http_transaction_factory_ = new net::HttpCache(
+ http_transaction_factory_ = new HttpCache(
new HttpNetworkLayer(&socket_factory_,
host_resolver_,
cert_verifier_,
@@ -420,7 +420,7 @@ class SpdyURLRequestContext : public net::URLRequestContext {
network_delegate_,
NULL),
NULL /* net_log */,
- net::HttpCache::DefaultBackend::InMemory(0));
+ HttpCache::DefaultBackend::InMemory(0));
}
MockClientSocketFactory& socket_factory() { return socket_factory_; }
« no previous file with comments | « net/socket_stream/socket_stream_job.h ('k') | net/websockets/websocket_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698