OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 #include "webkit/plugins/npapi/webplugin_page_delegate.h" | 47 #include "webkit/plugins/npapi/webplugin_page_delegate.h" |
48 | 48 |
49 #if defined(OS_WIN) | 49 #if defined(OS_WIN) |
50 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the | 50 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the |
51 // root. VS warns when we inherit the WebWidgetClient method implementations | 51 // root. VS warns when we inherit the WebWidgetClient method implementations |
52 // from RenderWidget. It's safe to ignore that warning. | 52 // from RenderWidget. It's safe to ignore that warning. |
53 #pragma warning(disable: 4250) | 53 #pragma warning(disable: 4250) |
54 #endif | 54 #endif |
55 | 55 |
56 class AudioMessageFilter; | 56 class AudioMessageFilter; |
| 57 class AutofillDispatcher; |
57 class DeviceOrientationDispatcher; | 58 class DeviceOrientationDispatcher; |
58 class DevToolsAgent; | 59 class DevToolsAgent; |
59 class ExternalPopupMenu; | 60 class ExternalPopupMenu; |
60 class GeolocationDispatcher; | 61 class GeolocationDispatcher; |
61 class GURL; | 62 class GURL; |
62 class IntentsDispatcher; | 63 class IntentsDispatcher; |
63 class LoadProgressTracker; | 64 class LoadProgressTracker; |
64 class MediaStreamImpl; | 65 class MediaStreamImpl; |
65 class NotificationProvider; | 66 class NotificationProvider; |
66 class PepperDeviceTest; | 67 class PepperDeviceTest; |
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1139 | 1140 |
1140 // Device orientation dispatcher attached to this view; lazily initialized. | 1141 // Device orientation dispatcher attached to this view; lazily initialized. |
1141 DeviceOrientationDispatcher* device_orientation_dispatcher_; | 1142 DeviceOrientationDispatcher* device_orientation_dispatcher_; |
1142 | 1143 |
1143 // MediaStreamImpl attached to this view; lazily initialized. | 1144 // MediaStreamImpl attached to this view; lazily initialized. |
1144 scoped_refptr<MediaStreamImpl> media_stream_impl_; | 1145 scoped_refptr<MediaStreamImpl> media_stream_impl_; |
1145 | 1146 |
1146 // Dispatches all P2P socket used by the renderer. | 1147 // Dispatches all P2P socket used by the renderer. |
1147 content::P2PSocketDispatcher* p2p_socket_dispatcher_; | 1148 content::P2PSocketDispatcher* p2p_socket_dispatcher_; |
1148 | 1149 |
| 1150 // The autofill dispatcher attached to this view. NOT lazily initialized. |
| 1151 AutofillDispatcher* autofill_dispatcher_; |
| 1152 |
1149 DevToolsAgent* devtools_agent_; | 1153 DevToolsAgent* devtools_agent_; |
1150 | 1154 |
1151 RendererAccessibility* renderer_accessibility_; | 1155 RendererAccessibility* renderer_accessibility_; |
1152 | 1156 |
1153 // Misc ---------------------------------------------------------------------- | 1157 // Misc ---------------------------------------------------------------------- |
1154 | 1158 |
1155 // The current and pending file chooser completion objects. If the queue is | 1159 // The current and pending file chooser completion objects. If the queue is |
1156 // nonempty, the first item represents the currently running file chooser | 1160 // nonempty, the first item represents the currently running file chooser |
1157 // callback, and the remaining elements are the other file chooser completion | 1161 // callback, and the remaining elements are the other file chooser completion |
1158 // still waiting to be run (in order). | 1162 // still waiting to be run (in order). |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1214 // bunch of stuff, you should probably create a helper class and put your | 1218 // bunch of stuff, you should probably create a helper class and put your |
1215 // data and methods on that to avoid bloating RenderView more. You can | 1219 // data and methods on that to avoid bloating RenderView more. You can |
1216 // use the Observer interface to filter IPC messages and receive frame change | 1220 // use the Observer interface to filter IPC messages and receive frame change |
1217 // notifications. | 1221 // notifications. |
1218 // --------------------------------------------------------------------------- | 1222 // --------------------------------------------------------------------------- |
1219 | 1223 |
1220 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1224 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1221 }; | 1225 }; |
1222 | 1226 |
1223 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1227 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |