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

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

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 BluetoothRemoteGATTDescriptor_h 5 #ifndef BluetoothRemoteGATTDescriptor_h
6 #define BluetoothRemoteGATTDescriptor_h 6 #define BluetoothRemoteGATTDescriptor_h
7 7
8 #include <memory>
8 #include "bindings/core/v8/ScriptWrappable.h" 9 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "core/dom/DOMArrayPiece.h" 10 #include "core/dom/DOMArrayPiece.h"
10 #include "core/dom/DOMDataView.h" 11 #include "core/dom/DOMDataView.h"
11 #include "modules/EventTargetModules.h" 12 #include "modules/EventTargetModules.h"
12 #include "modules/bluetooth/Bluetooth.h" 13 #include "modules/bluetooth/Bluetooth.h"
13 #include "modules/bluetooth/BluetoothRemoteGATTCharacteristic.h" 14 #include "modules/bluetooth/BluetoothRemoteGATTCharacteristic.h"
14 #include "modules/bluetooth/BluetoothRemoteGATTService.h" 15 #include "modules/bluetooth/BluetoothRemoteGATTService.h"
15 #include "platform/heap/Handle.h" 16 #include "platform/heap/Handle.h"
16 #include "wtf/text/WTFString.h" 17 #include "platform/wtf/text/WTFString.h"
17 #include <memory>
18 18
19 namespace blink { 19 namespace blink {
20 20
21 class BluetoothRemoteGATTCharacteristic; 21 class BluetoothRemoteGATTCharacteristic;
22 class ScriptPromise; 22 class ScriptPromise;
23 class ScriptState; 23 class ScriptState;
24 24
25 // BluetoothRemoteGATTDescriptor represents a GATT Descriptor, which is 25 // BluetoothRemoteGATTDescriptor represents a GATT Descriptor, which is
26 // a basic data element that provides further information about a peripheral's 26 // a basic data element that provides further information about a peripheral's
27 // characteristic. 27 // characteristic.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 DOMException* CreateInvalidDescriptorError(); 70 DOMException* CreateInvalidDescriptorError();
71 71
72 mojom::blink::WebBluetoothRemoteGATTDescriptorPtr descriptor_; 72 mojom::blink::WebBluetoothRemoteGATTDescriptorPtr descriptor_;
73 Member<BluetoothRemoteGATTCharacteristic> characteristic_; 73 Member<BluetoothRemoteGATTCharacteristic> characteristic_;
74 Member<DOMDataView> value_; 74 Member<DOMDataView> value_;
75 }; 75 };
76 76
77 } // namespace blink 77 } // namespace blink
78 78
79 #endif // BluetoothRemoteGATTDescriptor_h 79 #endif // BluetoothRemoteGATTDescriptor_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698