| 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> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/id_map.h" | 16 #include "base/id_map.h" |
| 17 #include "base/memory/linked_ptr.h" | 17 #include "base/memory/linked_ptr.h" |
| 18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
| 19 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
| 20 #include "base/process.h" | 20 #include "base/process.h" |
| 21 #include "base/timer.h" | 21 #include "base/timer.h" |
| 22 #include "base/values.h" | 22 #include "base/values.h" |
| 23 #include "build/build_config.h" | 23 #include "build/build_config.h" |
| 24 #include "content/common/content_export.h" | 24 #include "content/common/content_export.h" |
| 25 #include "content/common/drag_event_source_info.h" | 25 #include "content/common/drag_event_source_info.h" |
| 26 #include "content/common/edit_command.h" | 26 #include "content/common/edit_command.h" |
| 27 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 27 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
| 28 #include "content/common/navigation_gesture.h" | 28 #include "content/common/navigation_gesture.h" |
| 29 #include "content/common/view_message_enums.h" | 29 #include "content/common/view_message_enums.h" |
| 30 #include "content/public/common/accessibility_mode.h" |
| 30 #include "content/public/common/javascript_message_type.h" | 31 #include "content/public/common/javascript_message_type.h" |
| 31 #include "content/public/common/page_zoom.h" | 32 #include "content/public/common/page_zoom.h" |
| 32 #include "content/public/common/referrer.h" | 33 #include "content/public/common/referrer.h" |
| 33 #include "content/public/common/renderer_preferences.h" | 34 #include "content/public/common/renderer_preferences.h" |
| 34 #include "content/public/common/stop_find_action.h" | 35 #include "content/public/common/stop_find_action.h" |
| 35 #include "content/public/renderer/render_view.h" | 36 #include "content/public/renderer/render_view.h" |
| 36 #include "content/renderer/mouse_lock_dispatcher.h" | 37 #include "content/renderer/mouse_lock_dispatcher.h" |
| 37 #include "content/renderer/render_view_pepper_helper.h" | 38 #include "content/renderer/render_view_pepper_helper.h" |
| 38 #include "content/renderer/render_widget.h" | 39 #include "content/renderer/render_widget.h" |
| 39 #include "content/renderer/renderer_webcookiejar_impl.h" | 40 #include "content/renderer/renderer_webcookiejar_impl.h" |
| (...skipping 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1449 | 1450 |
| 1450 // MediaStreamImpl attached to this view; lazily initialized. | 1451 // MediaStreamImpl attached to this view; lazily initialized. |
| 1451 MediaStreamImpl* media_stream_impl_; | 1452 MediaStreamImpl* media_stream_impl_; |
| 1452 | 1453 |
| 1453 DevToolsAgent* devtools_agent_; | 1454 DevToolsAgent* devtools_agent_; |
| 1454 | 1455 |
| 1455 // The current accessibility mode. | 1456 // The current accessibility mode. |
| 1456 AccessibilityMode accessibility_mode_; | 1457 AccessibilityMode accessibility_mode_; |
| 1457 | 1458 |
| 1458 // Only valid if |accessibility_mode_| is anything other than | 1459 // Only valid if |accessibility_mode_| is anything other than |
| 1459 // AccessibilityModeOff. | 1460 // ACCESSIBILITY_MODE_OFF. |
| 1460 RendererAccessibility* renderer_accessibility_; | 1461 RendererAccessibility* renderer_accessibility_; |
| 1461 | 1462 |
| 1462 // Java Bridge dispatcher attached to this view; lazily initialized. | 1463 // Java Bridge dispatcher attached to this view; lazily initialized. |
| 1463 JavaBridgeDispatcher* java_bridge_dispatcher_; | 1464 JavaBridgeDispatcher* java_bridge_dispatcher_; |
| 1464 | 1465 |
| 1465 // Mouse Lock dispatcher attached to this view. | 1466 // Mouse Lock dispatcher attached to this view. |
| 1466 MouseLockDispatcher* mouse_lock_dispatcher_; | 1467 MouseLockDispatcher* mouse_lock_dispatcher_; |
| 1467 | 1468 |
| 1468 // Helper class to handle favicon changes. | 1469 // Helper class to handle favicon changes. |
| 1469 FaviconHelper* favicon_helper_; | 1470 FaviconHelper* favicon_helper_; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1629 // use the Observer interface to filter IPC messages and receive frame change | 1630 // use the Observer interface to filter IPC messages and receive frame change |
| 1630 // notifications. | 1631 // notifications. |
| 1631 // --------------------------------------------------------------------------- | 1632 // --------------------------------------------------------------------------- |
| 1632 | 1633 |
| 1633 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1634 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1634 }; | 1635 }; |
| 1635 | 1636 |
| 1636 } // namespace content | 1637 } // namespace content |
| 1637 | 1638 |
| 1638 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1639 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |