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

Side by Side Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.h

Issue 2848243004: Clean up bindings/core/v8 (Part 2) (Closed)
Patch Set: Rebase Created 3 years, 7 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 BluetoothDevice_h 5 #ifndef BluetoothDevice_h
6 #define BluetoothDevice_h 6 #define BluetoothDevice_h
7 7
8 #include <memory> 8 #include <memory>
9 #include "bindings/core/v8/ScriptWrappable.h"
10 #include "core/dom/ContextLifecycleObserver.h" 9 #include "core/dom/ContextLifecycleObserver.h"
11 #include "modules/EventTargetModules.h" 10 #include "modules/EventTargetModules.h"
12 #include "modules/bluetooth/BluetoothRemoteGATTServer.h" 11 #include "modules/bluetooth/BluetoothRemoteGATTServer.h"
12 #include "platform/bindings/ScriptWrappable.h"
13 #include "platform/heap/Heap.h" 13 #include "platform/heap/Heap.h"
14 #include "platform/wtf/text/WTFString.h" 14 #include "platform/wtf/text/WTFString.h"
15 #include "public/platform/modules/bluetooth/web_bluetooth.mojom-blink.h" 15 #include "public/platform/modules/bluetooth/web_bluetooth.mojom-blink.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class Bluetooth; 19 class Bluetooth;
20 class BluetoothAttributeInstanceMap; 20 class BluetoothAttributeInstanceMap;
21 class BluetoothRemoteGATTCharacteristic; 21 class BluetoothRemoteGATTCharacteristic;
22 class BluetoothRemoteGATTDescriptor; 22 class BluetoothRemoteGATTDescriptor;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 Member<BluetoothAttributeInstanceMap> attribute_instance_map_; 101 Member<BluetoothAttributeInstanceMap> attribute_instance_map_;
102 102
103 mojom::blink::WebBluetoothDevicePtr device_; 103 mojom::blink::WebBluetoothDevicePtr device_;
104 Member<BluetoothRemoteGATTServer> gatt_; 104 Member<BluetoothRemoteGATTServer> gatt_;
105 Member<Bluetooth> bluetooth_; 105 Member<Bluetooth> bluetooth_;
106 }; 106 };
107 107
108 } // namespace blink 108 } // namespace blink
109 109
110 #endif // BluetoothDevice_h 110 #endif // BluetoothDevice_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698