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 15 matching lines...) Expand all Loading... |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef MIDIClientProxy_h | 31 #ifndef MIDIClientProxy_h |
32 #define MIDIClientProxy_h | 32 #define MIDIClientProxy_h |
33 | 33 |
34 #include "modules/webmidi/MIDIClient.h" | 34 #include "modules/webmidi/MIDIClient.h" |
35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "wtf/PtrUtil.h" |
| 37 #include <memory> |
36 | 38 |
37 namespace blink { | 39 namespace blink { |
38 | 40 |
39 class MIDIAccessInitializer; | 41 class MIDIAccessInitializer; |
40 class MIDIOptions; | 42 class MIDIOptions; |
41 class WebMIDIClient; | 43 class WebMIDIClient; |
42 | 44 |
43 class MIDIClientProxy final : public MIDIClient { | 45 class MIDIClientProxy final : public MIDIClient { |
44 public: | 46 public: |
45 static PassOwnPtr<MIDIClientProxy> create(WebMIDIClient* client) | 47 static std::unique_ptr<MIDIClientProxy> create(WebMIDIClient* client) |
46 { | 48 { |
47 return adoptPtr(new MIDIClientProxy(client)); | 49 return wrapUnique(new MIDIClientProxy(client)); |
48 } | 50 } |
49 | 51 |
50 // MIDIClient | 52 // MIDIClient |
51 void requestPermission(MIDIAccessInitializer*, const MIDIOptions&) override; | 53 void requestPermission(MIDIAccessInitializer*, const MIDIOptions&) override; |
52 void cancelPermissionRequest(MIDIAccessInitializer*) override; | 54 void cancelPermissionRequest(MIDIAccessInitializer*) override; |
53 | 55 |
54 private: | 56 private: |
55 explicit MIDIClientProxy(WebMIDIClient*); | 57 explicit MIDIClientProxy(WebMIDIClient*); |
56 | 58 |
57 WebMIDIClient* m_client; | 59 WebMIDIClient* m_client; |
58 }; | 60 }; |
59 | 61 |
60 } // namespace blink | 62 } // namespace blink |
61 | 63 |
62 #endif // MIDIClientProxy_h | 64 #endif // MIDIClientProxy_h |
OLD | NEW |