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

Side by Side Diff: webkit/glue/websocketstreamhandle_bridge.h

Issue 20188002: Move websocketstreamhandle_bridge.h out of webkit/glue/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months 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
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698