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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
11 #include <queue> | 11 #include <queue> |
12 #include <set> | 12 #include <set> |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
17 #include "base/gtest_prod_util.h" | 17 #include "base/gtest_prod_util.h" |
18 #include "base/id_map.h" | 18 #include "base/id_map.h" |
19 #include "base/memory/linked_ptr.h" | 19 #include "base/memory/linked_ptr.h" |
20 #include "base/memory/weak_ptr.h" | 20 #include "base/memory/weak_ptr.h" |
21 #include "base/observer_list.h" | 21 #include "base/observer_list.h" |
22 #include "base/timer.h" | 22 #include "base/timer.h" |
23 #include "build/build_config.h" | 23 #include "build/build_config.h" |
24 #include "content/renderer/render_view_selection.h" | 24 #include "content/renderer/render_view_selection.h" |
25 #include "content/renderer/renderer_webcookiejar_impl.h" | 25 #include "content/renderer/renderer_webcookiejar_impl.h" |
26 #include "content/common/content_export.h" | 26 #include "content/common/content_export.h" |
27 #include "content/common/edit_command.h" | 27 #include "content/common/edit_command.h" |
| 28 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
28 #include "content/common/navigation_gesture.h" | 29 #include "content/common/navigation_gesture.h" |
29 #include "content/public/common/page_zoom.h" | 30 #include "content/public/common/page_zoom.h" |
30 #include "content/public/common/referrer.h" | 31 #include "content/public/common/referrer.h" |
31 #include "content/public/common/renderer_preferences.h" | 32 #include "content/public/common/renderer_preferences.h" |
32 #include "content/public/common/stop_find_action.h" | 33 #include "content/public/common/stop_find_action.h" |
33 #include "content/public/renderer/render_view.h" | 34 #include "content/public/renderer/render_view.h" |
34 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h" | |
35 #include "content/renderer/pepper_plugin_delegate_impl.h" | 35 #include "content/renderer/pepper_plugin_delegate_impl.h" |
36 #include "content/renderer/render_widget.h" | 36 #include "content/renderer/render_widget.h" |
37 #include "ipc/ipc_platform_file.h" | 37 #include "ipc/ipc_platform_file.h" |
38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" | 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" |
39 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" | 39 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" |
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" | 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" |
41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" | 41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" |
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" | 42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" |
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie
nt.h" | 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie
nt.h" |
44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat
e.h" | 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat
e.h" |
(...skipping 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1269 // bunch of stuff, you should probably create a helper class and put your | 1269 // bunch of stuff, you should probably create a helper class and put your |
1270 // data and methods on that to avoid bloating RenderView more. You can | 1270 // data and methods on that to avoid bloating RenderView more. You can |
1271 // use the Observer interface to filter IPC messages and receive frame change | 1271 // use the Observer interface to filter IPC messages and receive frame change |
1272 // notifications. | 1272 // notifications. |
1273 // --------------------------------------------------------------------------- | 1273 // --------------------------------------------------------------------------- |
1274 | 1274 |
1275 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1275 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1276 }; | 1276 }; |
1277 | 1277 |
1278 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1278 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |