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

Unified Diff: content/shell/renderer/test_runner/mock_webrtc_data_channel_handler.h

Issue 629143003: Replace OVERRIDE and FINAL with override and final in content/shell/[a-s]* (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: content/shell/renderer/test_runner/mock_webrtc_data_channel_handler.h
diff --git a/content/shell/renderer/test_runner/mock_webrtc_data_channel_handler.h b/content/shell/renderer/test_runner/mock_webrtc_data_channel_handler.h
index 82adc3ef6cedb07d911bb73de962e3175131921d..538c1093e77e99b49812f0cdc5500ae6d7df2d02 100644
--- a/content/shell/renderer/test_runner/mock_webrtc_data_channel_handler.h
+++ b/content/shell/renderer/test_runner/mock_webrtc_data_channel_handler.h
@@ -23,19 +23,19 @@ class MockWebRTCDataChannelHandler : public blink::WebRTCDataChannelHandler {
// WebRTCDataChannelHandler related methods
virtual void setClient(
- blink::WebRTCDataChannelHandlerClient* client) OVERRIDE;
- virtual blink::WebString label() OVERRIDE;
- virtual bool isReliable() OVERRIDE;
- virtual bool ordered() const OVERRIDE;
- virtual unsigned short maxRetransmitTime() const OVERRIDE;
- virtual unsigned short maxRetransmits() const OVERRIDE;
- virtual blink::WebString protocol() const OVERRIDE;
- virtual bool negotiated() const OVERRIDE;
- virtual unsigned short id() const OVERRIDE;
- virtual unsigned long bufferedAmount() OVERRIDE;
- virtual bool sendStringData(const blink::WebString& data) OVERRIDE;
- virtual bool sendRawData(const char* data, size_t size) OVERRIDE;
- virtual void close() OVERRIDE;
+ blink::WebRTCDataChannelHandlerClient* client) override;
+ virtual blink::WebString label() override;
+ virtual bool isReliable() override;
+ virtual bool ordered() const override;
+ virtual unsigned short maxRetransmitTime() const override;
+ virtual unsigned short maxRetransmits() const override;
+ virtual blink::WebString protocol() const override;
+ virtual bool negotiated() const override;
+ virtual unsigned short id() const override;
+ virtual unsigned long bufferedAmount() override;
+ virtual bool sendStringData(const blink::WebString& data) override;
+ virtual bool sendRawData(const char* data, size_t size) override;
+ virtual void close() override;
// WebTask related methods
WebTaskList* mutable_task_list() { return &task_list_; }

Powered by Google App Engine
This is Rietveld 408576698