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" |
11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
12 #include "base/id_map.h" | 12 #include "base/id_map.h" |
13 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
16 #include "base/process.h" | 16 #include "base/process.h" |
17 #include "base/timer.h" | 17 #include "base/timer.h" |
18 #include "base/values.h" | 18 #include "base/values.h" |
19 #include "build/build_config.h" | 19 #include "build/build_config.h" |
20 #include "content/common/content_export.h" | 20 #include "content/common/content_export.h" |
21 #include "content/common/drag_event_source_info.h" | 21 #include "content/common/drag_event_source_info.h" |
22 #include "content/common/edit_command.h" | 22 #include "content/common/edit_command.h" |
23 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 23 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
24 #include "content/common/navigation_gesture.h" | 24 #include "content/common/navigation_gesture.h" |
25 #include "content/common/view_message_enums.h" | 25 #include "content/common/view_message_enums.h" |
| 26 #include "content/public/common/accessibility_mode.h" |
26 #include "content/public/common/javascript_message_type.h" | 27 #include "content/public/common/javascript_message_type.h" |
27 #include "content/public/common/page_zoom.h" | 28 #include "content/public/common/page_zoom.h" |
28 #include "content/public/common/referrer.h" | 29 #include "content/public/common/referrer.h" |
29 #include "content/public/common/renderer_preferences.h" | 30 #include "content/public/common/renderer_preferences.h" |
30 #include "content/public/common/stop_find_action.h" | 31 #include "content/public/common/stop_find_action.h" |
31 #include "content/public/renderer/render_view.h" | 32 #include "content/public/renderer/render_view.h" |
32 #include "content/renderer/mouse_lock_dispatcher.h" | 33 #include "content/renderer/mouse_lock_dispatcher.h" |
33 #include "content/renderer/render_view_pepper_helper.h" | 34 #include "content/renderer/render_view_pepper_helper.h" |
34 #include "content/renderer/render_widget.h" | 35 #include "content/renderer/render_widget.h" |
35 #include "content/renderer/renderer_webcookiejar_impl.h" | 36 #include "content/renderer/renderer_webcookiejar_impl.h" |
(...skipping 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1606 // use the Observer interface to filter IPC messages and receive frame change | 1607 // use the Observer interface to filter IPC messages and receive frame change |
1607 // notifications. | 1608 // notifications. |
1608 // --------------------------------------------------------------------------- | 1609 // --------------------------------------------------------------------------- |
1609 | 1610 |
1610 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1611 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1611 }; | 1612 }; |
1612 | 1613 |
1613 } // namespace content | 1614 } // namespace content |
1614 | 1615 |
1615 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1616 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |