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

Side by Side Diff: Source/modules/webmidi/MIDIClientMock.h

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/webmidi/MIDIAccessor.h ('k') | Source/modules/webmidi/MIDIConnectionEvent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #ifndef MIDIClientMock_h 31 #ifndef MIDIClientMock_h
32 #define MIDIClientMock_h 32 #define MIDIClientMock_h
33 33
34 #include "modules/webmidi/MIDIClient.h" 34 #include "modules/webmidi/MIDIClient.h"
35 35
36 namespace WebCore { 36 namespace WebCore {
37 37
38 // FIXME: This belongs in Source/testing/runner, not compiled into shipping Blin k! 38 // FIXME: This belongs in Source/testing/runner, not compiled into shipping Blin k!
39 class MIDIClientMock : public MIDIClient { 39 class MIDIClientMock FINAL : public MIDIClient {
40 public: 40 public:
41 MIDIClientMock(); 41 MIDIClientMock();
42 virtual ~MIDIClientMock(); 42 virtual ~MIDIClientMock();
43 43
44 void setSysExPermission(bool); 44 void setSysExPermission(bool);
45 void resetMock(); 45 void resetMock();
46 46
47 // MIDIClient 47 // MIDIClient
48 virtual void requestSysExPermission(PassRefPtr<MIDIAccess>) OVERRIDE; 48 virtual void requestSysExPermission(PassRefPtr<MIDIAccess>) OVERRIDE;
49 virtual void cancelSysExPermissionRequest(MIDIAccess*) OVERRIDE; 49 virtual void cancelSysExPermissionRequest(MIDIAccess*) OVERRIDE;
50 50
51 private: 51 private:
52 bool m_allowed; 52 bool m_allowed;
53 }; 53 };
54 54
55 } // namespace WebCore 55 } // namespace WebCore
56 56
57 #endif // MIDIClient_h 57 #endif // MIDIClient_h
OLDNEW
« no previous file with comments | « Source/modules/webmidi/MIDIAccessor.h ('k') | Source/modules/webmidi/MIDIConnectionEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698