Chromium Code Reviews| 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 77f73eab30e09edb9196b3b5000b5d75966a7f28..da71bca63348414a0197e36fb90b23c0a7a6c784 100644 |
| --- a/content/browser/web_contents/web_contents_impl.h |
| +++ b/content/browser/web_contents/web_contents_impl.h |
| @@ -277,8 +277,9 @@ class CONTENT_EXPORT WebContentsImpl |
| int GetCapturerCount() const override; |
| bool IsAudioMuted() const override; |
| void SetAudioMuted(bool mute) override; |
| - bool IsBluetoothDeviceConnected() const override; |
| - void SetBluetoothDeviceConnected(bool connected) override; |
| + void IncrementBluetoothConnectedDeviceCount() override; |
| + void DecrementBluetoothConnectedDeviceCount() override; |
| + bool IsConnectedToBluetoothDevice() const override; |
| bool IsCrashed() const override; |
| void SetIsCrashed(base::TerminationStatus status, int error_code) override; |
| base::TerminationStatus GetCrashedStatus() const override; |
| @@ -1308,7 +1309,7 @@ class CONTENT_EXPORT WebContentsImpl |
| // Created on-demand to mute all audio output from this WebContents. |
| scoped_ptr<WebContentsAudioMuter> audio_muter_; |
| - bool bluetooth_device_connected_; |
| + size_t bluetooth_connected_device_count_; |
|
Jeffrey Yasskin
2016/04/06 23:05:13
I was going to suggest an int here, but http://www
ortuno
2016/04/07 15:09:20
Ack.
|
| bool virtual_keyboard_requested_; |