| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 namespace content { | 44 namespace content { |
| 45 class BrowserPluginEmbedder; | 45 class BrowserPluginEmbedder; |
| 46 class BrowserPluginGuest; | 46 class BrowserPluginGuest; |
| 47 class BrowserPluginGuestManager; | 47 class BrowserPluginGuestManager; |
| 48 class DateTimeChooserAndroid; | 48 class DateTimeChooserAndroid; |
| 49 class DownloadItem; | 49 class DownloadItem; |
| 50 class GeolocationDispatcherHost; | 50 class GeolocationDispatcherHost; |
| 51 class InterstitialPageImpl; | 51 class InterstitialPageImpl; |
| 52 class JavaScriptDialogManager; | 52 class JavaScriptDialogManager; |
| 53 class MidiDispatcherHost; |
| 53 class PowerSaveBlocker; | 54 class PowerSaveBlocker; |
| 54 class RenderViewHost; | 55 class RenderViewHost; |
| 55 class RenderViewHostDelegateView; | 56 class RenderViewHostDelegateView; |
| 56 class RenderViewHostImpl; | 57 class RenderViewHostImpl; |
| 57 class RenderWidgetHostImpl; | 58 class RenderWidgetHostImpl; |
| 58 class SavePackage; | 59 class SavePackage; |
| 59 class SiteInstance; | 60 class SiteInstance; |
| 60 class TestWebContents; | 61 class TestWebContents; |
| 61 class WebContentsDelegate; | 62 class WebContentsDelegate; |
| 62 class WebContentsImpl; | 63 class WebContentsImpl; |
| (...skipping 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1124 bool is_subframe_; | 1125 bool is_subframe_; |
| 1125 | 1126 |
| 1126 // Whether touch emulation is enabled in RenderWidgetHost. | 1127 // Whether touch emulation is enabled in RenderWidgetHost. |
| 1127 bool touch_emulation_enabled_; | 1128 bool touch_emulation_enabled_; |
| 1128 | 1129 |
| 1129 // Whether the last JavaScript dialog shown was suppressed. Used for testing. | 1130 // Whether the last JavaScript dialog shown was suppressed. Used for testing. |
| 1130 bool last_dialog_suppressed_; | 1131 bool last_dialog_suppressed_; |
| 1131 | 1132 |
| 1132 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; | 1133 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; |
| 1133 | 1134 |
| 1135 scoped_ptr<MidiDispatcherHost> midi_dispatcher_host_; |
| 1136 |
| 1134 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1137 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1135 }; | 1138 }; |
| 1136 | 1139 |
| 1137 } // namespace content | 1140 } // namespace content |
| 1138 | 1141 |
| 1139 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1142 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |