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

Side by Side Diff: net/spdy/spdy_websocket_stream.h

Issue 8990001: base::Bind: Convert most of net/http. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clang. Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_SPDY_SPDY_WEBSOCKET_STREAM_H_ 5 #ifndef NET_SPDY_SPDY_WEBSOCKET_STREAM_H_
6 #define NET_SPDY_SPDY_WEBSOCKET_STREAM_H_ 6 #define NET_SPDY_SPDY_WEBSOCKET_STREAM_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 82
83 private: 83 private:
84 FRIEND_TEST_ALL_PREFIXES(SpdyWebSocketStreamTest, Basic); 84 FRIEND_TEST_ALL_PREFIXES(SpdyWebSocketStreamTest, Basic);
85 85
86 void OnSpdyStreamCreated(int status); 86 void OnSpdyStreamCreated(int status);
87 87
88 scoped_refptr<SpdyStream> stream_; 88 scoped_refptr<SpdyStream> stream_;
89 scoped_refptr<SpdySession> spdy_session_; 89 scoped_refptr<SpdySession> spdy_session_;
90 Delegate* delegate_; 90 Delegate* delegate_;
91 91
92 OldCompletionCallbackImpl<SpdyWebSocketStream> spdy_stream_created_callback_;
93
94 DISALLOW_COPY_AND_ASSIGN(SpdyWebSocketStream); 92 DISALLOW_COPY_AND_ASSIGN(SpdyWebSocketStream);
95 }; 93 };
96 94
97 } // namespace net 95 } // namespace net
98 96
99 #endif // NET_SPDY_SPDY_WEBSOCKET_STREAM_H_ 97 #endif // NET_SPDY_SPDY_WEBSOCKET_STREAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698