OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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> |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "content/common/edit_command.h" | 27 #include "content/common/edit_command.h" |
28 #include "content/common/navigation_gesture.h" | 28 #include "content/common/navigation_gesture.h" |
29 #include "content/public/common/page_zoom.h" | 29 #include "content/public/common/page_zoom.h" |
30 #include "content/public/common/renderer_preferences.h" | 30 #include "content/public/common/renderer_preferences.h" |
31 #include "content/public/common/stop_find_action.h" | 31 #include "content/public/common/stop_find_action.h" |
32 #include "content/public/renderer/render_view.h" | 32 #include "content/public/renderer/render_view.h" |
33 #include "content/renderer/pepper_plugin_delegate_impl.h" | 33 #include "content/renderer/pepper_plugin_delegate_impl.h" |
34 #include "content/renderer/render_widget.h" | 34 #include "content/renderer/render_widget.h" |
35 #include "ipc/ipc_platform_file.h" | 35 #include "ipc/ipc_platform_file.h" |
36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" | 36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" |
37 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" | 37 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" |
38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" | 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" |
39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" | 39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" |
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" | 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" |
41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie
nt.h" | 41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie
nt.h" |
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat
e.h" | 42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat
e.h" |
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" | 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" |
45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h" | 45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h" |
46 #include "ui/gfx/surface/transport_dib.h" | 46 #include "ui/gfx/surface/transport_dib.h" |
47 #include "webkit/glue/webpreferences.h" | 47 #include "webkit/glue/webpreferences.h" |
(...skipping 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1226 // bunch of stuff, you should probably create a helper class and put your | 1226 // bunch of stuff, you should probably create a helper class and put your |
1227 // data and methods on that to avoid bloating RenderView more. You can | 1227 // data and methods on that to avoid bloating RenderView more. You can |
1228 // use the Observer interface to filter IPC messages and receive frame change | 1228 // use the Observer interface to filter IPC messages and receive frame change |
1229 // notifications. | 1229 // notifications. |
1230 // --------------------------------------------------------------------------- | 1230 // --------------------------------------------------------------------------- |
1231 | 1231 |
1232 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1232 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1233 }; | 1233 }; |
1234 | 1234 |
1235 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1235 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |