Index: content/browser/web_contents/web_contents_impl.h |
diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h |
index aff6a06978b8611c9208bc2f3738a534f0b6518d..36e7b130248f28378835ee40d46a66b4d4c6b8a7 100644 |
--- a/content/browser/web_contents/web_contents_impl.h |
+++ b/content/browser/web_contents/web_contents_impl.h |
@@ -286,6 +286,8 @@ class CONTENT_EXPORT WebContentsImpl |
int GetCapturerCount() const override; |
bool IsAudioMuted() const override; |
void SetAudioMuted(bool mute) override; |
+ bool IsBluetoothDeviceConnected() const override; |
+ void SetBluetoothDeviceConnected(bool mute) override; |
bool IsCrashed() const override; |
void SetIsCrashed(base::TerminationStatus status, int error_code) override; |
base::TerminationStatus GetCrashedStatus() const override; |
@@ -1310,6 +1312,8 @@ class CONTENT_EXPORT WebContentsImpl |
// Created on-demand to mute all audio output from this WebContents. |
scoped_ptr<WebContentsAudioMuter> audio_muter_; |
+ bool bluetooth_device_connected_; |
+ |
bool virtual_keyboard_requested_; |
// Notifies ResourceDispatcherHostImpl of various events related to loading. |