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

Unified Diff: chrome/test/chromedriver/net/sync_websocket_impl.h

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/chromedriver/net/sync_websocket_impl.h
diff --git a/chrome/test/chromedriver/net/sync_websocket_impl.h b/chrome/test/chromedriver/net/sync_websocket_impl.h
index e1997686361d4bdd8a93032710dbdf2f7d529988..4a42471789a85be0eecb11ab23780403992920a9 100644
--- a/chrome/test/chromedriver/net/sync_websocket_impl.h
+++ b/chrome/test/chromedriver/net/sync_websocket_impl.h
@@ -35,13 +35,13 @@ class SyncWebSocketImpl : public SyncWebSocket {
virtual ~SyncWebSocketImpl();
// Overridden from SyncWebSocket:
- virtual bool IsConnected() OVERRIDE;
- virtual bool Connect(const GURL& url) OVERRIDE;
- virtual bool Send(const std::string& message) OVERRIDE;
+ virtual bool IsConnected() override;
+ virtual bool Connect(const GURL& url) override;
+ virtual bool Send(const std::string& message) override;
virtual StatusCode ReceiveNextMessage(
std::string* message,
- const base::TimeDelta& timeout) OVERRIDE;
- virtual bool HasNextMessage() OVERRIDE;
+ const base::TimeDelta& timeout) override;
+ virtual bool HasNextMessage() override;
private:
struct CoreTraits;
@@ -59,8 +59,8 @@ class SyncWebSocketImpl : public SyncWebSocket {
bool HasNextMessage();
// Overriden from WebSocketListener:
- virtual void OnMessageReceived(const std::string& message) OVERRIDE;
- virtual void OnClose() OVERRIDE;
+ virtual void OnMessageReceived(const std::string& message) override;
+ virtual void OnClose() override;
private:
friend class base::RefCountedThreadSafe<Core, CoreTraits>;
« no previous file with comments | « chrome/test/chromedriver/net/net_util_unittest.cc ('k') | chrome/test/chromedriver/net/sync_websocket_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698