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/dom/ContextLifecycleObserver.h" | 10 #include "core/dom/ContextLifecycleObserver.h" |
(...skipping 30 matching lines...) Expand all Loading... |
41 DEFINE_ATTRIBUTE_EVENT_LISTENER(disconnect); | 41 DEFINE_ATTRIBUTE_EVENT_LISTENER(disconnect); |
42 | 42 |
43 // EventTarget overrides. | 43 // EventTarget overrides. |
44 ExecutionContext* getExecutionContext() const override; | 44 ExecutionContext* getExecutionContext() const override; |
45 const AtomicString& interfaceName() const override; | 45 const AtomicString& interfaceName() const override; |
46 | 46 |
47 // ContextLifecycleObserver overrides. | 47 // ContextLifecycleObserver overrides. |
48 void contextDestroyed() override; | 48 void contextDestroyed() override; |
49 | 49 |
50 // WebUSBClient::Observer overrides. | 50 // WebUSBClient::Observer overrides. |
51 void onDeviceConnected(WebPassOwnPtr<WebUSBDevice>) override; | 51 void onDeviceConnected(std::unique_ptr<WebUSBDevice>) override; |
52 void onDeviceDisconnected(WebPassOwnPtr<WebUSBDevice>) override; | 52 void onDeviceDisconnected(std::unique_ptr<WebUSBDevice>) override; |
53 | 53 |
54 DECLARE_VIRTUAL_TRACE(); | 54 DECLARE_VIRTUAL_TRACE(); |
55 EAGERLY_FINALIZE(); | 55 EAGERLY_FINALIZE(); |
56 | 56 |
57 private: | 57 private: |
58 explicit USB(LocalFrame& frame); | 58 explicit USB(LocalFrame& frame); |
59 | 59 |
60 WebUSBClient* m_client; | 60 WebUSBClient* m_client; |
61 }; | 61 }; |
62 | 62 |
63 } // namespace blink | 63 } // namespace blink |
64 | 64 |
65 #endif // USB_h | 65 #endif // USB_h |
OLD | NEW |