summaryrefslogtreecommitdiffstats
path: root/net/spdy
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-19 11:48:19 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-19 11:48:19 +0000
commitda968bc16c3a459b350e6b941af07c99ed201764 (patch)
tree2b545b1631ace146fde83064dbad50b15a65776d /net/spdy
parentd2ad7b4cf05551da4e832a6cc038f57e308ba8ca (diff)
downloadchromium_src-da968bc16c3a459b350e6b941af07c99ed201764.zip
chromium_src-da968bc16c3a459b350e6b941af07c99ed201764.tar.gz
chromium_src-da968bc16c3a459b350e6b941af07c99ed201764.tar.bz2
net: Remove prefix net:: from some places that already are in namespace net.
This should address the wtc review in http://codereview.chromium.org/6338002/ BUG=64263 TEST=trybots Review URL: http://codereview.chromium.org/6322003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71787 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy')
-rw-r--r--net/spdy/spdy_test_util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/spdy/spdy_test_util.h b/net/spdy/spdy_test_util.h
index 96ce5de..698d511 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_; }