Chromium Code Reviews| Index: third_party/WebKit/public/web/WebFrameClient.h |
| diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h |
| index fd520576316b589f50d9d4fd4d2f0737b0088d9d..1a6d51dd5e99ee4bc845e538872e5f3135589dff 100644 |
| --- a/third_party/WebKit/public/web/WebFrameClient.h |
| +++ b/third_party/WebKit/public/web/WebFrameClient.h |
| @@ -48,6 +48,7 @@ |
| #include "public/platform/WebFileSystem.h" |
| #include "public/platform/WebFileSystemType.h" |
| #include "public/platform/WebSecurityOrigin.h" |
| +#include "public/platform/WebSetSinkIdCallbacks.h" |
| #include "public/platform/WebStorageQuotaCallbacks.h" |
| #include "public/platform/WebStorageQuotaType.h" |
| #include "public/platform/WebURLError.h" |
| @@ -674,6 +675,12 @@ public: |
| // WebUSB -------------------------------------------------------------- |
| virtual WebUSBClient* usbClient() { return nullptr; } |
| + |
| + // Audio Output Devices API -------------------------------------------- |
| + |
| + // Checks that the given audio sink exists and is authorized. The result is provided via the callback. |
| + virtual void checkIfAudioSinkExistsAndIsAuthorized(const WebString& sinkId, const WebSecurityOrigin&, WebSetSinkIdCallbacks*) { } |
|
Peter Beverloo
2015/11/09 20:05:06
nit: document that ownership of |callbacks| is pas
Guido Urdaneta
2015/11/10 15:36:51
Done.
|
| + |
| protected: |
| virtual ~WebFrameClient() { } |
| }; |