OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef WebBluetoothDevice_h | |
6 #define WebBluetoothDevice_h | |
7 | |
8 namespace blink { | |
9 | |
10 // An object through which the embedder can trigger events on a Document-bound | |
11 // BluetoothDevice object. | |
12 class WebBluetoothDevice { | |
13 public: | |
14 // Used to notify blink that the characteristic's value changed. | |
scheib
2016/05/19 01:26:57
rewrite for this method, drop 'blink' if possible.
Jeffrey Yasskin
2016/05/19 17:47:07
Whoops, thanks. Yeah, I think the name of the meth
| |
15 virtual void dispatchGattServerDisconnected() = 0; | |
16 }; | |
17 | |
18 } // namespace blink | |
19 | |
20 #endif // WebBluetoothDevice_h | |
OLD | NEW |