| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 1212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1223 // The accessibility mode for all frames. This is queried when each frame | 1223 // The accessibility mode for all frames. This is queried when each frame |
| 1224 // is created, and broadcast to all frames when it changes. | 1224 // is created, and broadcast to all frames when it changes. |
| 1225 AccessibilityMode accessibility_mode_; | 1225 AccessibilityMode accessibility_mode_; |
| 1226 | 1226 |
| 1227 // Monitors power levels for audio streams associated with this WebContents. | 1227 // Monitors power levels for audio streams associated with this WebContents. |
| 1228 AudioStreamMonitor audio_stream_monitor_; | 1228 AudioStreamMonitor audio_stream_monitor_; |
| 1229 | 1229 |
| 1230 // Created on-demand to mute all audio output from this WebContents. | 1230 // Created on-demand to mute all audio output from this WebContents. |
| 1231 scoped_ptr<WebContentsAudioMuter> audio_muter_; | 1231 scoped_ptr<WebContentsAudioMuter> audio_muter_; |
| 1232 | 1232 |
| 1233 bool virtual_keyboard_requested_; |
| 1234 |
| 1233 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; | 1235 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; |
| 1234 | 1236 |
| 1235 bool virtual_keyboard_requested_; | |
| 1236 | |
| 1237 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1237 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1238 }; | 1238 }; |
| 1239 | 1239 |
| 1240 } // namespace content | 1240 } // namespace content |
| 1241 | 1241 |
| 1242 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1242 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |