| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |