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

Side by Side Diff: mojo/services/html_viewer/websockethandle_impl.h

Issue 1037363002: Remove unnecessary 'virtual' annotation from mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix indentation Created 5 years, 9 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 MOJO_SERVICES_HTML_VIEWER_WEBSOCKETHANDLE_IMPL_H_ 5 #ifndef MOJO_SERVICES_HTML_VIEWER_WEBSOCKETHANDLE_IMPL_H_
6 #define MOJO_SERVICES_HTML_VIEWER_WEBSOCKETHANDLE_IMPL_H_ 6 #define MOJO_SERVICES_HTML_VIEWER_WEBSOCKETHANDLE_IMPL_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "mojo/common/handle_watcher.h" 10 #include "mojo/common/handle_watcher.h"
(...skipping 13 matching lines...) Expand all
24 class WebSocketHandleImpl : public blink::WebSocketHandle { 24 class WebSocketHandleImpl : public blink::WebSocketHandle {
25 public: 25 public:
26 explicit WebSocketHandleImpl(mojo::NetworkService* network_service); 26 explicit WebSocketHandleImpl(mojo::NetworkService* network_service);
27 27
28 private: 28 private:
29 friend class WebSocketClientImpl; 29 friend class WebSocketClientImpl;
30 30
31 virtual ~WebSocketHandleImpl(); 31 virtual ~WebSocketHandleImpl();
32 32
33 // blink::WebSocketHandle methods: 33 // blink::WebSocketHandle methods:
34 virtual void connect(const blink::WebURL& url, 34 void connect(const blink::WebURL& url,
35 const blink::WebVector<blink::WebString>& protocols, 35 const blink::WebVector<blink::WebString>& protocols,
sky 2015/03/27 21:24:26 Run git cl format as the spacing needs to be updat
36 const blink::WebSerializedOrigin& origin, 36 const blink::WebSerializedOrigin& origin,
37 blink::WebSocketHandleClient*) override; 37 blink::WebSocketHandleClient*) override;
38 virtual void send(bool fin, 38 void send(bool fin,
39 MessageType, 39 MessageType,
40 const char* data, 40 const char* data,
41 size_t size) override; 41 size_t size) override;
42 virtual void flowControl(int64_t quota) override; 42 void flowControl(int64_t quota) override;
43 virtual void close(unsigned short code, 43 void close(unsigned short code,
44 const blink::WebString& reason) override; 44 const blink::WebString& reason) override;
45 45
46 // Called when we finished writing to |send_stream_|. 46 // Called when we finished writing to |send_stream_|.
47 void DidWriteToSendStream(bool fin, 47 void DidWriteToSendStream(bool fin,
48 WebSocketHandle::MessageType type, 48 WebSocketHandle::MessageType type,
49 uint32_t num_bytes, 49 uint32_t num_bytes,
50 const char* data); 50 const char* data);
51 51
52 // Called when the socket is closed. 52 // Called when the socket is closed.
53 void Disconnect(); 53 void Disconnect();
54 54
55 mojo::WebSocketPtr web_socket_; 55 mojo::WebSocketPtr web_socket_;
56 scoped_ptr<WebSocketClientImpl> client_; 56 scoped_ptr<WebSocketClientImpl> client_;
57 mojo::ScopedDataPipeProducerHandle send_stream_; 57 mojo::ScopedDataPipeProducerHandle send_stream_;
58 scoped_ptr<mojo::WebSocketWriteQueue> write_queue_; 58 scoped_ptr<mojo::WebSocketWriteQueue> write_queue_;
59 // True if close() was called. 59 // True if close() was called.
60 bool did_close_; 60 bool did_close_;
61 61
62 DISALLOW_COPY_AND_ASSIGN(WebSocketHandleImpl); 62 DISALLOW_COPY_AND_ASSIGN(WebSocketHandleImpl);
63 }; 63 };
64 64
65 } // namespace html_viewer 65 } // namespace html_viewer
66 66
67 #endif // MOJO_SERVICES_HTML_VIEWER_WEBSOCKETHANDLE_IMPL_H_ 67 #endif // MOJO_SERVICES_HTML_VIEWER_WEBSOCKETHANDLE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698