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

Side by Side Diff: Source/modules/bluetooth/NavigatorBluetooth.h

Issue 639533002: bluetooth: Extend navigator.bluetooth IDL to include Bluetooth interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/modules/bluetooth/Bluetooth.idl ('k') | Source/modules/bluetooth/NavigatorBluetooth.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 NavigatorBluetooth_h 5 #ifndef NavigatorBluetooth_h
6 #define NavigatorBluetooth_h 6 #define NavigatorBluetooth_h
7 7
8 #include "platform/Supplementable.h"
9 #include "platform/heap/Handle.h"
10
8 namespace blink { 11 namespace blink {
9 12
10 class NavigatorBluetooth { 13 class Bluetooth;
14 class Navigator;
15
16 class NavigatorBluetooth FINAL
17 : public NoBaseWillBeGarbageCollected<NavigatorBluetooth>
18 , public WillBeHeapSupplement<Navigator> {
19 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorBluetooth);
20 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(NavigatorBluetooth);
11 public: 21 public:
12 virtual ~NavigatorBluetooth() { } 22 static NavigatorBluetooth& from(Navigator&);
23
24 static Bluetooth* bluetooth(Navigator&);
25 Bluetooth* bluetooth();
26
27 void trace(Visitor*);
28
29 private:
30 NavigatorBluetooth();
31 static const char* supplementName();
32
33 PersistentWillBeMember<Bluetooth> m_bluetooth;
13 }; 34 };
14 35
15 } // namespace blink 36 } // namespace blink
16 37
17 #endif // NavigatorBluetooth_h 38 #endif // NavigatorBluetooth_h
OLDNEW
« no previous file with comments | « Source/modules/bluetooth/Bluetooth.idl ('k') | Source/modules/bluetooth/NavigatorBluetooth.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698