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

Unified Diff: components/test_runner/mock_web_midi_accessor.h

Issue 1360123005: Enforce marking "override" for functions overriding Blink in components/test_runner/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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: components/test_runner/mock_web_midi_accessor.h
diff --git a/components/test_runner/mock_web_midi_accessor.h b/components/test_runner/mock_web_midi_accessor.h
index 78095bcb8d4cd04b3a3c99df2d96db6616df7e59..e67211c528074638447cd128480726f68ccd383d 100644
--- a/components/test_runner/mock_web_midi_accessor.h
+++ b/components/test_runner/mock_web_midi_accessor.h
@@ -21,14 +21,14 @@ class MockWebMIDIAccessor : public blink::WebMIDIAccessor {
public:
explicit MockWebMIDIAccessor(blink::WebMIDIAccessorClient* client,
TestInterfaces* interfaces);
- virtual ~MockWebMIDIAccessor();
+ ~MockWebMIDIAccessor() override;
// blink::WebMIDIAccessor implementation.
- virtual void startSession() override;
- virtual void sendMIDIData(unsigned port_index,
- const unsigned char* data,
- size_t length,
- double timestamp) override;
+ void startSession() override;
+ void sendMIDIData(unsigned port_index,
+ const unsigned char* data,
+ size_t length,
+ double timestamp) override;
// WebTask related methods
WebTaskList* mutable_task_list() { return &task_list_; }
« no previous file with comments | « components/test_runner/mock_web_media_stream_center.cc ('k') | components/test_runner/mock_web_speech_recognizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698