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> |
(...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/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 28 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
29 #include "content/common/navigation_gesture.h" | 29 #include "content/common/navigation_gesture.h" |
30 #include "content/common/view_message_enums.h" | 30 #include "content/common/view_message_enums.h" |
31 #include "content/public/common/javascript_message_type.h" | 31 #include "content/public/common/javascript_message_type.h" |
32 #include "content/public/common/page_zoom.h" | 32 #include "content/public/common/page_zoom.h" |
33 #include "content/public/common/referrer.h" | 33 #include "content/public/common/referrer.h" |
34 #include "content/public/common/renderer_preferences.h" | 34 #include "content/public/common/renderer_preferences.h" |
35 #include "content/public/common/stop_find_action.h" | 35 #include "content/public/common/stop_find_action.h" |
36 #include "content/public/common/top_controls_state.h" | 36 #include "content/public/common/top_controls_state.h" |
| 37 #include "content/public/common/webpreferences.h" |
37 #include "content/public/renderer/render_view.h" | 38 #include "content/public/renderer/render_view.h" |
38 #include "content/renderer/media/webmediaplayer_delegate.h" | 39 #include "content/renderer/media/webmediaplayer_delegate.h" |
39 #include "content/renderer/mouse_lock_dispatcher.h" | 40 #include "content/renderer/mouse_lock_dispatcher.h" |
40 #include "content/renderer/render_frame_impl.h" | 41 #include "content/renderer/render_frame_impl.h" |
41 #include "content/renderer/render_widget.h" | 42 #include "content/renderer/render_widget.h" |
42 #include "content/renderer/renderer_date_time_picker.h" | 43 #include "content/renderer/renderer_date_time_picker.h" |
43 #include "content/renderer/stats_collection_observer.h" | 44 #include "content/renderer/stats_collection_observer.h" |
44 #include "ipc/ipc_platform_file.h" | 45 #include "ipc/ipc_platform_file.h" |
45 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 46 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
46 #include "third_party/WebKit/public/web/WebAXObject.h" | 47 #include "third_party/WebKit/public/web/WebAXObject.h" |
47 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 48 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
48 #include "third_party/WebKit/public/web/WebDataSource.h" | 49 #include "third_party/WebKit/public/web/WebDataSource.h" |
49 #include "third_party/WebKit/public/web/WebFrameClient.h" | 50 #include "third_party/WebKit/public/web/WebFrameClient.h" |
50 #include "third_party/WebKit/public/web/WebHistoryItem.h" | 51 #include "third_party/WebKit/public/web/WebHistoryItem.h" |
51 #include "third_party/WebKit/public/web/WebIconURL.h" | 52 #include "third_party/WebKit/public/web/WebIconURL.h" |
52 #include "third_party/WebKit/public/web/WebInputEvent.h" | 53 #include "third_party/WebKit/public/web/WebInputEvent.h" |
53 #include "third_party/WebKit/public/web/WebNavigationType.h" | 54 #include "third_party/WebKit/public/web/WebNavigationType.h" |
54 #include "third_party/WebKit/public/web/WebNode.h" | 55 #include "third_party/WebKit/public/web/WebNode.h" |
55 #include "third_party/WebKit/public/web/WebPageSerializerClient.h" | 56 #include "third_party/WebKit/public/web/WebPageSerializerClient.h" |
56 #include "third_party/WebKit/public/web/WebPageVisibilityState.h" | 57 #include "third_party/WebKit/public/web/WebPageVisibilityState.h" |
57 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" | 58 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" |
58 #include "third_party/WebKit/public/web/WebViewClient.h" | 59 #include "third_party/WebKit/public/web/WebViewClient.h" |
59 #include "ui/base/ui_base_types.h" | 60 #include "ui/base/ui_base_types.h" |
60 #include "ui/surface/transport_dib.h" | 61 #include "ui/surface/transport_dib.h" |
61 #include "webkit/common/webpreferences.h" | |
62 | 62 |
63 #if defined(OS_ANDROID) | 63 #if defined(OS_ANDROID) |
64 #include "content/renderer/android/content_detector.h" | 64 #include "content/renderer/android/content_detector.h" |
65 #include "third_party/WebKit/public/web/WebContentDetectionResult.h" | 65 #include "third_party/WebKit/public/web/WebContentDetectionResult.h" |
66 #endif | 66 #endif |
67 | 67 |
68 #if defined(COMPILER_MSVC) | 68 #if defined(COMPILER_MSVC) |
69 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the | 69 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the |
70 // root. VS warns when we inherit the WebWidgetClient method implementations | 70 // root. VS warns when we inherit the WebWidgetClient method implementations |
71 // from RenderWidget. It's safe to ignore that warning. | 71 // from RenderWidget. It's safe to ignore that warning. |
(...skipping 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1507 // use the Observer interface to filter IPC messages and receive frame change | 1507 // use the Observer interface to filter IPC messages and receive frame change |
1508 // notifications. | 1508 // notifications. |
1509 // --------------------------------------------------------------------------- | 1509 // --------------------------------------------------------------------------- |
1510 | 1510 |
1511 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1511 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1512 }; | 1512 }; |
1513 | 1513 |
1514 } // namespace content | 1514 } // namespace content |
1515 | 1515 |
1516 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1516 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |