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_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 class WebHitTestResult; | 120 class WebHitTestResult; |
121 #endif | 121 #endif |
122 } | 122 } |
123 | 123 |
124 namespace webkit_glue { | 124 namespace webkit_glue { |
125 class WebURLResponseExtraDataImpl; | 125 class WebURLResponseExtraDataImpl; |
126 } | 126 } |
127 | 127 |
128 namespace content { | 128 namespace content { |
129 class BrowserPluginManager; | 129 class BrowserPluginManager; |
130 class DeviceOrientationDispatcher; | |
131 class DevToolsAgent; | 130 class DevToolsAgent; |
132 class DocumentState; | 131 class DocumentState; |
133 class ExternalPopupMenu; | 132 class ExternalPopupMenu; |
134 class FaviconHelper; | 133 class FaviconHelper; |
135 class GeolocationDispatcher; | 134 class GeolocationDispatcher; |
136 class HistoryController; | 135 class HistoryController; |
137 class HistoryEntry; | 136 class HistoryEntry; |
138 class ImageResourceFetcher; | 137 class ImageResourceFetcher; |
139 class MidiDispatcher; | 138 class MidiDispatcher; |
140 class MediaStreamDispatcher; | 139 class MediaStreamDispatcher; |
(...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1059 // The push messaging dispatcher attached to this view, lazily initialized. | 1058 // The push messaging dispatcher attached to this view, lazily initialized. |
1060 PushMessagingDispatcher* push_messaging_dispatcher_; | 1059 PushMessagingDispatcher* push_messaging_dispatcher_; |
1061 | 1060 |
1062 // The geolocation dispatcher attached to this view, lazily initialized. | 1061 // The geolocation dispatcher attached to this view, lazily initialized. |
1063 GeolocationDispatcher* geolocation_dispatcher_; | 1062 GeolocationDispatcher* geolocation_dispatcher_; |
1064 | 1063 |
1065 // The speech recognition dispatcher attached to this view, lazily | 1064 // The speech recognition dispatcher attached to this view, lazily |
1066 // initialized. | 1065 // initialized. |
1067 SpeechRecognitionDispatcher* speech_recognition_dispatcher_; | 1066 SpeechRecognitionDispatcher* speech_recognition_dispatcher_; |
1068 | 1067 |
1069 // Device orientation dispatcher attached to this view; lazily initialized. | |
1070 DeviceOrientationDispatcher* device_orientation_dispatcher_; | |
1071 | |
1072 // MediaStream dispatcher attached to this view; lazily initialized. | 1068 // MediaStream dispatcher attached to this view; lazily initialized. |
1073 MediaStreamDispatcher* media_stream_dispatcher_; | 1069 MediaStreamDispatcher* media_stream_dispatcher_; |
1074 | 1070 |
1075 // BrowserPluginManager attached to this view; lazily initialized. | 1071 // BrowserPluginManager attached to this view; lazily initialized. |
1076 scoped_refptr<BrowserPluginManager> browser_plugin_manager_; | 1072 scoped_refptr<BrowserPluginManager> browser_plugin_manager_; |
1077 | 1073 |
1078 // MidiClient attached to this view; lazily initialized. | 1074 // MidiClient attached to this view; lazily initialized. |
1079 MidiDispatcher* midi_dispatcher_; | 1075 MidiDispatcher* midi_dispatcher_; |
1080 | 1076 |
1081 DevToolsAgent* devtools_agent_; | 1077 DevToolsAgent* devtools_agent_; |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1199 // use the Observer interface to filter IPC messages and receive frame change | 1195 // use the Observer interface to filter IPC messages and receive frame change |
1200 // notifications. | 1196 // notifications. |
1201 // --------------------------------------------------------------------------- | 1197 // --------------------------------------------------------------------------- |
1202 | 1198 |
1203 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1199 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1204 }; | 1200 }; |
1205 | 1201 |
1206 } // namespace content | 1202 } // namespace content |
1207 | 1203 |
1208 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1204 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |