Chromium Code Reviews| Index: public/platform/Platform.h |
| diff --git a/public/platform/Platform.h b/public/platform/Platform.h |
| index c319e30c3ab10f33258b52f0ef4015c0d13169d6..4051efffa2b1766fdd0f9b5ce5b4c97e75433022 100644 |
| --- a/public/platform/Platform.h |
| +++ b/public/platform/Platform.h |
| @@ -61,6 +61,7 @@ namespace blink { |
| class WebAudioBus; |
| class WebBlobRegistry; |
| +class WebBluetooth; |
| class WebContentDecryptionModule; |
| class WebClipboard; |
| class WebCompositorSupport; |
| @@ -639,6 +640,11 @@ public: |
| virtual WebGeofencingProvider* geofencingProvider() { return 0; } |
| + // Bluetooth ---------------------------------------------------------- |
| + |
| + // Returns pointer to client owned WebBluetooth implementation. |
| + virtual WebBluetooth* bluetooth() { return 0; } |
|
yhirano
2014/10/20 10:42:45
Using nullptr is fine.
|
| + |
| protected: |
| virtual ~Platform() { } |
| }; |