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 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1396 // Only valid if |accessibility_mode_| is anything other than | 1397 // Only valid if |accessibility_mode_| is anything other than |
1397 // AccessibilityModeOff. | 1398 // AccessibilityModeOff. |
1398 RendererAccessibility* renderer_accessibility_; | 1399 RendererAccessibility* renderer_accessibility_; |
1399 | 1400 |
1400 // Java Bridge dispatcher attached to this view; lazily initialized. | 1401 // Java Bridge dispatcher attached to this view; lazily initialized. |
1401 JavaBridgeDispatcher* java_bridge_dispatcher_; | 1402 JavaBridgeDispatcher* java_bridge_dispatcher_; |
1402 | 1403 |
1403 // Mouse Lock dispatcher attached to this view. | 1404 // Mouse Lock dispatcher attached to this view. |
1404 MouseLockDispatcher* mouse_lock_dispatcher_; | 1405 MouseLockDispatcher* mouse_lock_dispatcher_; |
1405 | 1406 |
1407 FaviconHelper* favicon_helper_; | |
jam
2012/11/27 01:16:31
not needed, remove
Cait (Slow)
2012/11/28 00:11:45
Should the renderer-side favicon class (content/re
| |
1408 | |
1406 #if defined(OS_ANDROID) | 1409 #if defined(OS_ANDROID) |
1407 // Android Specific --------------------------------------------------------- | 1410 // Android Specific --------------------------------------------------------- |
1408 | 1411 |
1409 // The background color of the document body element. This is used as the | 1412 // The background color of the document body element. This is used as the |
1410 // default background color for filling the screen areas for which we don't | 1413 // default background color for filling the screen areas for which we don't |
1411 // have the actual content. | 1414 // have the actual content. |
1412 SkColor body_background_color_; | 1415 SkColor body_background_color_; |
1413 | 1416 |
1414 // True if SendUpdateFrameInfo is pending. | 1417 // True if SendUpdateFrameInfo is pending. |
1415 bool update_frame_info_scheduled_; | 1418 bool update_frame_info_scheduled_; |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1559 // use the Observer interface to filter IPC messages and receive frame change | 1562 // use the Observer interface to filter IPC messages and receive frame change |
1560 // notifications. | 1563 // notifications. |
1561 // --------------------------------------------------------------------------- | 1564 // --------------------------------------------------------------------------- |
1562 | 1565 |
1563 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1566 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1564 }; | 1567 }; |
1565 | 1568 |
1566 } // namespace content | 1569 } // namespace content |
1567 | 1570 |
1568 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1571 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |