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

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

Issue 2392443007: reflow comments in modules/[app_banner,encoding] (Closed)
Patch Set: Created 4 years, 2 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 BluetoothRemoteGATTServer_h 5 #ifndef BluetoothRemoteGATTServer_h
6 #define BluetoothRemoteGATTServer_h 6 #define BluetoothRemoteGATTServer_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "bindings/modules/v8/StringOrUnsignedLong.h" 9 #include "bindings/modules/v8/StringOrUnsignedLong.h"
10 #include "modules/bluetooth/BluetoothDevice.h" 10 #include "modules/bluetooth/BluetoothDevice.h"
11 #include "platform/heap/Heap.h" 11 #include "platform/heap/Heap.h"
12 #include "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.moj om-blink.h" 12 #include "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.moj om-blink.h"
13 #include "wtf/text/WTFString.h" 13 #include "wtf/text/WTFString.h"
14 14
15 namespace blink { 15 namespace blink {
16 16
17 class BluetoothDevice; 17 class BluetoothDevice;
18 class ScriptPromise; 18 class ScriptPromise;
19 class ScriptPromiseResolver; 19 class ScriptPromiseResolver;
20 class ScriptState; 20 class ScriptState;
21 21
22 // BluetoothRemoteGATTServer provides a way to interact with a connected bluetoo th peripheral. 22 // BluetoothRemoteGATTServer provides a way to interact with a connected
23 // bluetooth peripheral.
23 class BluetoothRemoteGATTServer final 24 class BluetoothRemoteGATTServer final
24 : public GarbageCollected<BluetoothRemoteGATTServer>, 25 : public GarbageCollected<BluetoothRemoteGATTServer>,
25 public ScriptWrappable { 26 public ScriptWrappable {
26 DEFINE_WRAPPERTYPEINFO(); 27 DEFINE_WRAPPERTYPEINFO();
27 28
28 public: 29 public:
29 BluetoothRemoteGATTServer(BluetoothDevice*); 30 BluetoothRemoteGATTServer(BluetoothDevice*);
30 31
31 static BluetoothRemoteGATTServer* create(BluetoothDevice*); 32 static BluetoothRemoteGATTServer* create(BluetoothDevice*);
32 33
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 // can tell whether its realm was ever disconnected while it was running. 71 // can tell whether its realm was ever disconnected while it was running.
71 HeapHashSet<Member<ScriptPromiseResolver>> m_activeAlgorithms; 72 HeapHashSet<Member<ScriptPromiseResolver>> m_activeAlgorithms;
72 73
73 Member<BluetoothDevice> m_device; 74 Member<BluetoothDevice> m_device;
74 bool m_connected; 75 bool m_connected;
75 }; 76 };
76 77
77 } // namespace blink 78 } // namespace blink
78 79
79 #endif // BluetoothDevice_h 80 #endif // BluetoothDevice_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698