| 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 <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 #endif | 136 #endif |
| 137 } | 137 } |
| 138 | 138 |
| 139 namespace content { | 139 namespace content { |
| 140 class BrowserPluginManager; | 140 class BrowserPluginManager; |
| 141 class DeviceOrientationDispatcher; | 141 class DeviceOrientationDispatcher; |
| 142 class DevToolsAgent; | 142 class DevToolsAgent; |
| 143 class DocumentState; | 143 class DocumentState; |
| 144 class DomAutomationController; | 144 class DomAutomationController; |
| 145 class ExternalPopupMenu; | 145 class ExternalPopupMenu; |
| 146 class FaviconHelper; |
| 146 class GeolocationDispatcher; | 147 class GeolocationDispatcher; |
| 147 class InputTagSpeechDispatcher; | 148 class InputTagSpeechDispatcher; |
| 148 class JavaBridgeDispatcher; | 149 class JavaBridgeDispatcher; |
| 149 class LoadProgressTracker; | 150 class LoadProgressTracker; |
| 150 class MediaStreamDispatcher; | 151 class MediaStreamDispatcher; |
| 151 class MediaStreamImpl; | 152 class MediaStreamImpl; |
| 152 class MouseLockDispatcher; | 153 class MouseLockDispatcher; |
| 153 class NavigationState; | 154 class NavigationState; |
| 154 class NotificationProvider; | 155 class NotificationProvider; |
| 155 class RenderViewObserver; | 156 class RenderViewObserver; |
| (...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 // Only valid if |accessibility_mode_| is anything other than | 1392 // Only valid if |accessibility_mode_| is anything other than |
| 1392 // AccessibilityModeOff. | 1393 // AccessibilityModeOff. |
| 1393 RendererAccessibility* renderer_accessibility_; | 1394 RendererAccessibility* renderer_accessibility_; |
| 1394 | 1395 |
| 1395 // Java Bridge dispatcher attached to this view; lazily initialized. | 1396 // Java Bridge dispatcher attached to this view; lazily initialized. |
| 1396 JavaBridgeDispatcher* java_bridge_dispatcher_; | 1397 JavaBridgeDispatcher* java_bridge_dispatcher_; |
| 1397 | 1398 |
| 1398 // Mouse Lock dispatcher attached to this view. | 1399 // Mouse Lock dispatcher attached to this view. |
| 1399 MouseLockDispatcher* mouse_lock_dispatcher_; | 1400 MouseLockDispatcher* mouse_lock_dispatcher_; |
| 1400 | 1401 |
| 1402 FaviconHelper* favicon_helper_; |
| 1403 |
| 1401 #if defined(OS_ANDROID) | 1404 #if defined(OS_ANDROID) |
| 1402 // Android Specific --------------------------------------------------------- | 1405 // Android Specific --------------------------------------------------------- |
| 1403 | 1406 |
| 1404 // The background color of the document body element. This is used as the | 1407 // The background color of the document body element. This is used as the |
| 1405 // default background color for filling the screen areas for which we don't | 1408 // default background color for filling the screen areas for which we don't |
| 1406 // have the actual content. | 1409 // have the actual content. |
| 1407 SkColor body_background_color_; | 1410 SkColor body_background_color_; |
| 1408 | 1411 |
| 1409 // True if SendUpdateFrameInfo is pending. | 1412 // True if SendUpdateFrameInfo is pending. |
| 1410 bool update_frame_info_scheduled_; | 1413 bool update_frame_info_scheduled_; |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1550 // use the Observer interface to filter IPC messages and receive frame change | 1553 // use the Observer interface to filter IPC messages and receive frame change |
| 1551 // notifications. | 1554 // notifications. |
| 1552 // --------------------------------------------------------------------------- | 1555 // --------------------------------------------------------------------------- |
| 1553 | 1556 |
| 1554 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1557 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1555 }; | 1558 }; |
| 1556 | 1559 |
| 1557 } // namespace content | 1560 } // namespace content |
| 1558 | 1561 |
| 1559 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1562 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |