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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 namespace content { | 48 namespace content { |
49 class BrowserPluginEmbedder; | 49 class BrowserPluginEmbedder; |
50 class BrowserPluginGuest; | 50 class BrowserPluginGuest; |
51 class BrowserPluginGuestManager; | 51 class BrowserPluginGuestManager; |
52 class DateTimeChooserAndroid; | 52 class DateTimeChooserAndroid; |
53 class DownloadItem; | 53 class DownloadItem; |
54 class GeolocationServiceContext; | 54 class GeolocationServiceContext; |
55 class InterstitialPageImpl; | 55 class InterstitialPageImpl; |
56 class JavaScriptDialogManager; | 56 class JavaScriptDialogManager; |
57 class ManifestManagerHost; | 57 class ManifestManagerHost; |
58 class MidiDispatcherHost; | |
59 class PluginContentOriginWhitelist; | 58 class PluginContentOriginWhitelist; |
60 class PowerSaveBlocker; | 59 class PowerSaveBlocker; |
61 class RenderViewHost; | 60 class RenderViewHost; |
62 class RenderViewHostDelegateView; | 61 class RenderViewHostDelegateView; |
63 class RenderViewHostImpl; | 62 class RenderViewHostImpl; |
64 class RenderWidgetHostImpl; | 63 class RenderWidgetHostImpl; |
65 class SavePackage; | 64 class SavePackage; |
66 class ScreenOrientationDispatcherHost; | 65 class ScreenOrientationDispatcherHost; |
67 class SiteInstance; | 66 class SiteInstance; |
68 class TestWebContents; | 67 class TestWebContents; |
(...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1206 bool is_subframe_; | 1205 bool is_subframe_; |
1207 | 1206 |
1208 // Whether overscroll should be unconditionally disabled. | 1207 // Whether overscroll should be unconditionally disabled. |
1209 bool force_disable_overscroll_content_; | 1208 bool force_disable_overscroll_content_; |
1210 | 1209 |
1211 // Whether the last JavaScript dialog shown was suppressed. Used for testing. | 1210 // Whether the last JavaScript dialog shown was suppressed. Used for testing. |
1212 bool last_dialog_suppressed_; | 1211 bool last_dialog_suppressed_; |
1213 | 1212 |
1214 scoped_ptr<GeolocationServiceContext> geolocation_service_context_; | 1213 scoped_ptr<GeolocationServiceContext> geolocation_service_context_; |
1215 | 1214 |
1216 scoped_ptr<MidiDispatcherHost> midi_dispatcher_host_; | |
1217 | |
1218 scoped_ptr<ScreenOrientationDispatcherHost> | 1215 scoped_ptr<ScreenOrientationDispatcherHost> |
1219 screen_orientation_dispatcher_host_; | 1216 screen_orientation_dispatcher_host_; |
1220 | 1217 |
1221 scoped_ptr<ManifestManagerHost> manifest_manager_host_; | 1218 scoped_ptr<ManifestManagerHost> manifest_manager_host_; |
1222 | 1219 |
1223 // The accessibility mode for all frames. This is queried when each frame | 1220 // The accessibility mode for all frames. This is queried when each frame |
1224 // is created, and broadcast to all frames when it changes. | 1221 // is created, and broadcast to all frames when it changes. |
1225 AccessibilityMode accessibility_mode_; | 1222 AccessibilityMode accessibility_mode_; |
1226 | 1223 |
1227 // Monitors power levels for audio streams associated with this WebContents. | 1224 // Monitors power levels for audio streams associated with this WebContents. |
1228 AudioStreamMonitor audio_stream_monitor_; | 1225 AudioStreamMonitor audio_stream_monitor_; |
1229 | 1226 |
1230 // Created on-demand to mute all audio output from this WebContents. | 1227 // Created on-demand to mute all audio output from this WebContents. |
1231 scoped_ptr<WebContentsAudioMuter> audio_muter_; | 1228 scoped_ptr<WebContentsAudioMuter> audio_muter_; |
1232 | 1229 |
1233 bool virtual_keyboard_requested_; | 1230 bool virtual_keyboard_requested_; |
1234 | 1231 |
1235 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; | 1232 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; |
1236 | 1233 |
1237 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1234 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1238 }; | 1235 }; |
1239 | 1236 |
1240 } // namespace content | 1237 } // namespace content |
1241 | 1238 |
1242 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1239 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |