| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 PowerSaveBlocker; | 53 class PowerSaveBlocker; |
| 54 class RenderViewHost; | 54 class RenderViewHost; |
| 55 class RenderViewHostDelegateView; | 55 class RenderViewHostDelegateView; |
| 56 class RenderViewHostImpl; | 56 class RenderViewHostImpl; |
| 57 class RenderWidgetHostImpl; | 57 class RenderWidgetHostImpl; |
| 58 class SavePackage; | 58 class SavePackage; |
| 59 class ScreenOrientationDispatcherHost; |
| 59 class SiteInstance; | 60 class SiteInstance; |
| 60 class TestWebContents; | 61 class TestWebContents; |
| 61 class WebContentsDelegate; | 62 class WebContentsDelegate; |
| 62 class WebContentsImpl; | 63 class WebContentsImpl; |
| 63 class WebContentsObserver; | 64 class WebContentsObserver; |
| 64 class WebContentsView; | 65 class WebContentsView; |
| 65 class WebContentsViewDelegate; | 66 class WebContentsViewDelegate; |
| 66 struct AXEventNotificationDetails; | 67 struct AXEventNotificationDetails; |
| 67 struct ColorSuggestion; | 68 struct ColorSuggestion; |
| 68 struct FaviconURL; | 69 struct FaviconURL; |
| (...skipping 1055 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<ScreenOrientationDispatcherHost> |
| 1136 screen_orientation_dispatcher_host_; |
| 1137 |
| 1134 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1138 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1135 }; | 1139 }; |
| 1136 | 1140 |
| 1137 } // namespace content | 1141 } // namespace content |
| 1138 | 1142 |
| 1139 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1143 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |