OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef WEBKIT_GLUE_WEBSOCKETSTREAMHANDLE_BRIDGE_H_ | |
6 #define WEBKIT_GLUE_WEBSOCKETSTREAMHANDLE_BRIDGE_H_ | |
7 | |
8 #include <vector> | |
9 | |
10 #include "base/basictypes.h" | |
11 #include "base/memory/ref_counted.h" | |
12 | |
13 class GURL; | |
14 | |
15 namespace WebKit { | |
16 class WebSocketStreamHandle; | |
17 } | |
18 | |
19 namespace webkit_glue { | |
20 | |
21 class WebSocketStreamHandleDelegate; | |
22 | |
23 class WebSocketStreamHandleBridge | |
24 : public base::RefCountedThreadSafe<WebSocketStreamHandleBridge> { | |
25 public: | |
26 virtual void Connect(const GURL& url) = 0; | |
27 | |
28 virtual bool Send(const std::vector<char>& data) = 0; | |
29 | |
30 virtual void Close() = 0; | |
31 | |
32 protected: | |
33 friend class base::RefCountedThreadSafe<WebSocketStreamHandleBridge>; | |
34 WebSocketStreamHandleBridge() {} | |
35 virtual ~WebSocketStreamHandleBridge() {} | |
36 | |
37 private: | |
38 DISALLOW_COPY_AND_ASSIGN(WebSocketStreamHandleBridge); | |
39 }; | |
40 | |
41 } // namespace webkit_glue | |
42 | |
43 #endif // WEBKIT_GLUE_WEBSOCKETSTREAMHANDLE_BRIDGE_H_ | |
OLD | NEW |