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

Side by Side Diff: third_party/WebKit/Source/modules/webusb/USB.h

Issue 1876703002: Oilpan: Replace EAGERLY_FINALIZE in EventTarget's hierarchy with pre-finalizers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
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"
11 #include "core/events/EventTarget.h" 11 #include "core/events/EventTarget.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 ContextLifecycleObserver 24 , public ContextLifecycleObserver
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 USING_GARBAGE_COLLECTED_MIXIN(USB); 28 USING_GARBAGE_COLLECTED_MIXIN(USB);
29 USING_PRE_FINALIZER(USB, dispose);
29 public: 30 public:
30 static USB* create(LocalFrame& frame) 31 static USB* create(LocalFrame& frame)
31 { 32 {
32 return new USB(frame); 33 return new USB(frame);
33 } 34 }
34 35
35 ~USB() override; 36 ~USB() override;
36 37
37 // USB.idl 38 // USB.idl
38 ScriptPromise getDevices(ScriptState*); 39 ScriptPromise getDevices(ScriptState*);
39 ScriptPromise requestDevice(ScriptState*, const USBDeviceRequestOptions&); 40 ScriptPromise requestDevice(ScriptState*, const USBDeviceRequestOptions&);
40 DEFINE_ATTRIBUTE_EVENT_LISTENER(connect); 41 DEFINE_ATTRIBUTE_EVENT_LISTENER(connect);
41 DEFINE_ATTRIBUTE_EVENT_LISTENER(disconnect); 42 DEFINE_ATTRIBUTE_EVENT_LISTENER(disconnect);
42 43
43 // EventTarget overrides. 44 // EventTarget overrides.
44 ExecutionContext* getExecutionContext() const override; 45 ExecutionContext* getExecutionContext() const override;
45 const AtomicString& interfaceName() const override; 46 const AtomicString& interfaceName() const override;
46 47
47 // ContextLifecycleObserver overrides. 48 // ContextLifecycleObserver overrides.
48 void contextDestroyed() override; 49 void contextDestroyed() override;
49 50
50 // WebUSBClient::Observer overrides. 51 // WebUSBClient::Observer overrides.
51 void onDeviceConnected(std::unique_ptr<WebUSBDevice>) override; 52 void onDeviceConnected(std::unique_ptr<WebUSBDevice>) override;
52 void onDeviceDisconnected(std::unique_ptr<WebUSBDevice>) override; 53 void onDeviceDisconnected(std::unique_ptr<WebUSBDevice>) override;
53 54
54 DECLARE_VIRTUAL_TRACE(); 55 DECLARE_VIRTUAL_TRACE();
55 EAGERLY_FINALIZE();
56 56
57 private: 57 private:
58 explicit USB(LocalFrame& frame); 58 explicit USB(LocalFrame& frame);
59 void dispose();
59 60
60 WebUSBClient* m_client; 61 WebUSBClient* m_client;
61 }; 62 };
62 63
63 } // namespace blink 64 } // namespace blink
64 65
65 #endif // USB_h 66 #endif // USB_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/webmidi/MIDIAccess.cpp ('k') | third_party/WebKit/Source/modules/webusb/USB.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698