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

Unified Diff: webkit/plugins/ppapi/ppb_websocket_impl.h

Issue 8771002: Remove OVERRIDEs from methods inherited from WebKit API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_websocket_impl.h
diff --git a/webkit/plugins/ppapi/ppb_websocket_impl.h b/webkit/plugins/ppapi/ppb_websocket_impl.h
index 6204587b617264f8f25b564afd73369dcdb69cee..ddd3482b77500a6c7a1e1e1ac0775733d0b2d6c8 100644
--- a/webkit/plugins/ppapi/ppb_websocket_impl.h
+++ b/webkit/plugins/ppapi/ppb_websocket_impl.h
@@ -60,18 +60,16 @@ class PPB_WebSocket_Impl : public ::ppapi::Resource,
virtual PP_Var GetURL() OVERRIDE;
// WebSocketClient implementation.
- virtual void didConnect() OVERRIDE;
- virtual void didReceiveMessage(const WebKit::WebString& message) OVERRIDE;
- virtual void didReceiveBinaryData(
- const WebKit::WebData& binaryData) OVERRIDE;
- virtual void didReceiveMessageError() OVERRIDE;
- // TODO(toyoshim): Add OVERRIDE after landing WebKit side change.
+ virtual void didConnect();
+ virtual void didReceiveMessage(const WebKit::WebString& message);
+ virtual void didReceiveBinaryData(const WebKit::WebData& binaryData);
+ virtual void didReceiveMessageError();
virtual void didUpdateBufferedAmount(unsigned long buffered_amount);
- virtual void didStartClosingHandshake() OVERRIDE;
+ virtual void didStartClosingHandshake();
virtual void didClose(unsigned long buffered_amount,
ClosingHandshakeCompletionStatus status,
unsigned short code,
- const WebKit::WebString& reason) OVERRIDE;
+ const WebKit::WebString& reason);
private:
int32_t DoReceive();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698