| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 class GeolocationDispatcherHost; | 50 class GeolocationDispatcherHost; |
| 51 class InterstitialPageImpl; | 51 class InterstitialPageImpl; |
| 52 class JavaScriptDialogManager; | 52 class JavaScriptDialogManager; |
| 53 class MidiDispatcherHost; | 53 class MidiDispatcherHost; |
| 54 class PowerSaveBlocker; | 54 class PowerSaveBlocker; |
| 55 class RenderViewHost; | 55 class RenderViewHost; |
| 56 class RenderViewHostDelegateView; | 56 class RenderViewHostDelegateView; |
| 57 class RenderViewHostImpl; | 57 class RenderViewHostImpl; |
| 58 class RenderWidgetHostImpl; | 58 class RenderWidgetHostImpl; |
| 59 class SavePackage; | 59 class SavePackage; |
| 60 class ScreenOrientationDispatcherHost; |
| 60 class SiteInstance; | 61 class SiteInstance; |
| 61 class TestWebContents; | 62 class TestWebContents; |
| 62 class WebContentsDelegate; | 63 class WebContentsDelegate; |
| 63 class WebContentsImpl; | 64 class WebContentsImpl; |
| 64 class WebContentsObserver; | 65 class WebContentsObserver; |
| 65 class WebContentsView; | 66 class WebContentsView; |
| 66 class WebContentsViewDelegate; | 67 class WebContentsViewDelegate; |
| 67 struct AXEventNotificationDetails; | 68 struct AXEventNotificationDetails; |
| 68 struct ColorSuggestion; | 69 struct ColorSuggestion; |
| 69 struct FaviconURL; | 70 struct FaviconURL; |
| (...skipping 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 // Whether touch emulation is enabled in RenderWidgetHost. | 1128 // Whether touch emulation is enabled in RenderWidgetHost. |
| 1128 bool touch_emulation_enabled_; | 1129 bool touch_emulation_enabled_; |
| 1129 | 1130 |
| 1130 // Whether the last JavaScript dialog shown was suppressed. Used for testing. | 1131 // Whether the last JavaScript dialog shown was suppressed. Used for testing. |
| 1131 bool last_dialog_suppressed_; | 1132 bool last_dialog_suppressed_; |
| 1132 | 1133 |
| 1133 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; | 1134 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; |
| 1134 | 1135 |
| 1135 scoped_ptr<MidiDispatcherHost> midi_dispatcher_host_; | 1136 scoped_ptr<MidiDispatcherHost> midi_dispatcher_host_; |
| 1136 | 1137 |
| 1138 scoped_ptr<ScreenOrientationDispatcherHost> |
| 1139 screen_orientation_dispatcher_host_; |
| 1140 |
| 1137 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1141 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1138 }; | 1142 }; |
| 1139 | 1143 |
| 1140 } // namespace content | 1144 } // namespace content |
| 1141 | 1145 |
| 1142 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1146 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |