| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef USB_h | 5 #ifndef USB_h |
| 6 #define USB_h | 6 #define USB_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptPromise.h" | 8 #include "bindings/core/v8/ScriptPromise.h" |
| 9 #include "bindings/core/v8/ScriptWrappable.h" | 9 #include "bindings/core/v8/ScriptWrappable.h" |
| 10 #include "core/events/EventTarget.h" | 10 #include "core/events/EventTarget.h" |
| 11 #include "core/frame/LocalFrameLifecycleObserver.h" | 11 #include "core/frame/LocalFrameLifecycleObserver.h" |
| 12 #include "platform/heap/Handle.h" | 12 #include "platform/heap/Handle.h" |
| 13 #include "public/platform/modules/webusb/WebUSBClient.h" | 13 #include "public/platform/modules/webusb/WebUSBClient.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class LocalFrame; | 17 class LocalFrame; |
| 18 class ScriptState; | 18 class ScriptState; |
| 19 class USBDeviceRequestOptions; | 19 class USBDeviceRequestOptions; |
| 20 class WebUSBDevice; | 20 class WebUSBDevice; |
| 21 | 21 |
| 22 class USB final | 22 class USB final |
| 23 : public RefCountedGarbageCollectedEventTargetWithInlineData<USB> | 23 : public RefCountedGarbageCollectedEventTargetWithInlineData<USB> |
| 24 , public LocalFrameLifecycleObserver | 24 , public LocalFrameLifecycleObserver |
| 25 , public WebUSBClient::Observer { | 25 , public WebUSBClient::Observer { |
| 26 DEFINE_WRAPPERTYPEINFO(); | 26 DEFINE_WRAPPERTYPEINFO(); |
| 27 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(USB); | 27 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(USB); |
| 28 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(USB); | 28 USING_GARBAGE_COLLECTED_MIXIN(USB); |
| 29 public: | 29 public: |
| 30 static USB* create(LocalFrame& frame) | 30 static USB* create(LocalFrame& frame) |
| 31 { | 31 { |
| 32 return new USB(frame); | 32 return new USB(frame); |
| 33 } | 33 } |
| 34 | 34 |
| 35 ~USB() override; | 35 ~USB() override; |
| 36 | 36 |
| 37 // USB.idl | 37 // USB.idl |
| 38 ScriptPromise getDevices(ScriptState*); | 38 ScriptPromise getDevices(ScriptState*); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 55 | 55 |
| 56 private: | 56 private: |
| 57 explicit USB(LocalFrame& frame); | 57 explicit USB(LocalFrame& frame); |
| 58 | 58 |
| 59 WebUSBClient* m_client; | 59 WebUSBClient* m_client; |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace blink | 62 } // namespace blink |
| 63 | 63 |
| 64 #endif // USB_h | 64 #endif // USB_h |
| OLD | NEW |