| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |