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

Unified Diff: Source/web/MIDIClientProxy.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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
« no previous file with comments | « Source/web/LocalFileSystemClient.h ('k') | Source/web/MediaKeysClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/MIDIClientProxy.h
diff --git a/Source/web/MIDIClientProxy.h b/Source/web/MIDIClientProxy.h
index 4b15de355559be50a4b20be9397e0dc00f48f366..c966eb522e75751b0e06c40f34aa33355d0b7255 100644
--- a/Source/web/MIDIClientProxy.h
+++ b/Source/web/MIDIClientProxy.h
@@ -39,7 +39,7 @@ namespace blink {
class MIDIAccessInitializer;
class WebMIDIClient;
-class MIDIClientProxy FINAL : public MIDIClient {
+class MIDIClientProxy final : public MIDIClient {
public:
static PassOwnPtr<MIDIClientProxy> create(WebMIDIClient* client)
{
@@ -47,8 +47,8 @@ public:
}
// MIDIClient
- virtual void requestSysexPermission(MIDIAccessInitializer*) OVERRIDE;
- virtual void cancelSysexPermissionRequest(MIDIAccessInitializer*) OVERRIDE;
+ virtual void requestSysexPermission(MIDIAccessInitializer*) override;
+ virtual void cancelSysexPermissionRequest(MIDIAccessInitializer*) override;
private:
explicit MIDIClientProxy(WebMIDIClient*);
« no previous file with comments | « Source/web/LocalFileSystemClient.h ('k') | Source/web/MediaKeysClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698