diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-19 11:48:19 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-19 11:48:19 +0000 |
commit | da968bc16c3a459b350e6b941af07c99ed201764 (patch) | |
tree | 2b545b1631ace146fde83064dbad50b15a65776d /net/socket_stream/socket_stream.h | |
parent | d2ad7b4cf05551da4e832a6cc038f57e308ba8ca (diff) | |
download | chromium_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/socket_stream/socket_stream.h')
-rw-r--r-- | net/socket_stream/socket_stream.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/socket_stream/socket_stream.h b/net/socket_stream/socket_stream.h index 7288dec..7b7599e 100644 --- a/net/socket_stream/socket_stream.h +++ b/net/socket_stream/socket_stream.h @@ -112,8 +112,8 @@ class SocketStream : public base::RefCountedThreadSafe<SocketStream> { Delegate* delegate() const { return delegate_; } int max_pending_send_allowed() const { return max_pending_send_allowed_; } - net::URLRequestContext* context() const { return context_.get(); } - void set_context(net::URLRequestContext* context); + URLRequestContext* context() const { return context_.get(); } + void set_context(URLRequestContext* context); BoundNetLog* net_log() { return &net_log_; } @@ -271,7 +271,7 @@ class SocketStream : public base::RefCountedThreadSafe<SocketStream> { GURL url_; int max_pending_send_allowed_; - scoped_refptr<net::URLRequestContext> context_; + scoped_refptr<URLRequestContext> context_; UserDataMap user_data_; |