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

Unified Diff: Source/web/MIDIClientProxy.h

Issue 135753002: Update web classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 11 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/NotificationPresenterImpl.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 f3fed150f63ba2fe185cfa7d67d57ecea6e46aaf..610e2ba6d628f177d4f0f07bb915e314026d99c0 100644
--- a/Source/web/MIDIClientProxy.h
+++ b/Source/web/MIDIClientProxy.h
@@ -42,13 +42,13 @@ namespace blink {
class WebMIDIClient;
-class MIDIClientProxy : public WebCore::MIDIClient {
+class MIDIClientProxy FINAL : public WebCore::MIDIClient {
public:
explicit MIDIClientProxy(WebMIDIClient*);
// WebCore::MIDIClient
- virtual void requestSysExPermission(PassRefPtr<WebCore::MIDIAccess>);
- virtual void cancelSysExPermissionRequest(WebCore::MIDIAccess*);
+ virtual void requestSysExPermission(PassRefPtr<WebCore::MIDIAccess>) OVERRIDE;
+ virtual void cancelSysExPermissionRequest(WebCore::MIDIAccess*) OVERRIDE;
private:
WebMIDIClient* m_client;
« no previous file with comments | « Source/web/LocalFileSystemClient.h ('k') | Source/web/NotificationPresenterImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698