summaryrefslogtreecommitdiffstats
path: root/net/spdy/spdy_websocket_stream.cc
diff options
context:
space:
mode:
authorscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-30 01:04:32 +0000
committerscherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-30 01:04:32 +0000
commitaa249b505342a9e1203440dcd04b94901fbf8f80 (patch)
tree2419a4b1487dd81d057c102d75c6a0de5530ed14 /net/spdy/spdy_websocket_stream.cc
parent242aa4f94fa0bcc9558e17217c464cf5a98f790b (diff)
downloadchromium_src-aa249b505342a9e1203440dcd04b94901fbf8f80.zip
chromium_src-aa249b505342a9e1203440dcd04b94901fbf8f80.tar.gz
chromium_src-aa249b505342a9e1203440dcd04b94901fbf8f80.tar.bz2
net: Remove use of ALLOW_THIS_IN_INITIALIZER_LIST.
It's no longer providing value as the MSVC warning is disabled during compilation. Refer to bug for details. BUG=234765 R=rch@chromium.org Review URL: https://codereview.chromium.org/14113037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197200 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_websocket_stream.cc')
-rw-r--r--net/spdy/spdy_websocket_stream.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/spdy/spdy_websocket_stream.cc b/net/spdy/spdy_websocket_stream.cc
index a17ff73..3440af7 100644
--- a/net/spdy/spdy_websocket_stream.cc
+++ b/net/spdy/spdy_websocket_stream.cc
@@ -19,7 +19,7 @@ namespace net {
SpdyWebSocketStream::SpdyWebSocketStream(
SpdySession* spdy_session, Delegate* delegate)
- : weak_ptr_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)),
+ : weak_ptr_factory_(this),
stream_(NULL),
spdy_session_(spdy_session),
delegate_(delegate) {