| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 class DeviceOrientationDispatcher; | 132 class DeviceOrientationDispatcher; |
| 133 class DevToolsAgent; | 133 class DevToolsAgent; |
| 134 class DocumentState; | 134 class DocumentState; |
| 135 class ExternalPopupMenu; | 135 class ExternalPopupMenu; |
| 136 class FaviconHelper; | 136 class FaviconHelper; |
| 137 class GeolocationDispatcher; | 137 class GeolocationDispatcher; |
| 138 class ImageResourceFetcher; | 138 class ImageResourceFetcher; |
| 139 class InputTagSpeechDispatcher; | 139 class InputTagSpeechDispatcher; |
| 140 class JavaBridgeDispatcher; | 140 class JavaBridgeDispatcher; |
| 141 class LoadProgressTracker; | 141 class LoadProgressTracker; |
| 142 class MIDIDispatcher; | 142 class MidiDispatcher; |
| 143 class MediaStreamClient; | 143 class MediaStreamClient; |
| 144 class MediaStreamDispatcher; | 144 class MediaStreamDispatcher; |
| 145 class MouseLockDispatcher; | 145 class MouseLockDispatcher; |
| 146 class NavigationState; | 146 class NavigationState; |
| 147 class NotificationProvider; | 147 class NotificationProvider; |
| 148 class PepperPluginInstanceImpl; | 148 class PepperPluginInstanceImpl; |
| 149 class RenderViewObserver; | 149 class RenderViewObserver; |
| 150 class RenderViewTest; | 150 class RenderViewTest; |
| 151 class RendererAccessibility; | 151 class RendererAccessibility; |
| 152 class RendererDateTimePicker; | 152 class RendererDateTimePicker; |
| (...skipping 1171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1324 // MediaStream dispatcher attached to this view; lazily initialized. | 1324 // MediaStream dispatcher attached to this view; lazily initialized. |
| 1325 MediaStreamDispatcher* media_stream_dispatcher_; | 1325 MediaStreamDispatcher* media_stream_dispatcher_; |
| 1326 | 1326 |
| 1327 // BrowserPluginManager attached to this view; lazily initialized. | 1327 // BrowserPluginManager attached to this view; lazily initialized. |
| 1328 scoped_refptr<BrowserPluginManager> browser_plugin_manager_; | 1328 scoped_refptr<BrowserPluginManager> browser_plugin_manager_; |
| 1329 | 1329 |
| 1330 // MediaStreamClient attached to this view; lazily initialized. | 1330 // MediaStreamClient attached to this view; lazily initialized. |
| 1331 MediaStreamClient* media_stream_client_; | 1331 MediaStreamClient* media_stream_client_; |
| 1332 blink::WebUserMediaClient* web_user_media_client_; | 1332 blink::WebUserMediaClient* web_user_media_client_; |
| 1333 | 1333 |
| 1334 // MIDIClient attached to this view; lazily initialized. | 1334 // MidiClient attached to this view; lazily initialized. |
| 1335 MIDIDispatcher* midi_dispatcher_; | 1335 MidiDispatcher* midi_dispatcher_; |
| 1336 | 1336 |
| 1337 DevToolsAgent* devtools_agent_; | 1337 DevToolsAgent* devtools_agent_; |
| 1338 | 1338 |
| 1339 // The current accessibility mode. | 1339 // The current accessibility mode. |
| 1340 AccessibilityMode accessibility_mode_; | 1340 AccessibilityMode accessibility_mode_; |
| 1341 | 1341 |
| 1342 // Only valid if |accessibility_mode_| is anything other than | 1342 // Only valid if |accessibility_mode_| is anything other than |
| 1343 // AccessibilityModeOff. | 1343 // AccessibilityModeOff. |
| 1344 RendererAccessibility* renderer_accessibility_; | 1344 RendererAccessibility* renderer_accessibility_; |
| 1345 | 1345 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1469 // use the Observer interface to filter IPC messages and receive frame change | 1469 // use the Observer interface to filter IPC messages and receive frame change |
| 1470 // notifications. | 1470 // notifications. |
| 1471 // --------------------------------------------------------------------------- | 1471 // --------------------------------------------------------------------------- |
| 1472 | 1472 |
| 1473 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1473 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1474 }; | 1474 }; |
| 1475 | 1475 |
| 1476 } // namespace content | 1476 } // namespace content |
| 1477 | 1477 |
| 1478 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1478 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |