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

Unified Diff: content/shell/renderer/test_runner/mock_web_midi_accessor.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_web_midi_accessor.h
diff --git a/content/shell/renderer/test_runner/mock_web_midi_accessor.h b/content/shell/renderer/test_runner/mock_web_midi_accessor.h
index 80d21028fbd56406f2689dbc881b92c48a628935..b321502f417ef60d1b576e308891eca0ca85a84c 100644
--- a/content/shell/renderer/test_runner/mock_web_midi_accessor.h
+++ b/content/shell/renderer/test_runner/mock_web_midi_accessor.h
@@ -24,11 +24,11 @@ class MockWebMIDIAccessor : public blink::WebMIDIAccessor {
virtual ~MockWebMIDIAccessor();
// blink::WebMIDIAccessor implementation.
- virtual void startSession() OVERRIDE;
+ virtual void startSession() override;
virtual void sendMIDIData(unsigned port_index,
const unsigned char* data,
size_t length,
- double timestamp) OVERRIDE {}
+ double timestamp) override {}
// WebTask related methods
WebTaskList* mutable_task_list() { return &task_list_; }

Powered by Google App Engine
This is Rietveld 408576698