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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 #include "content/public/common/page_zoom.h" | 36 #include "content/public/common/page_zoom.h" |
37 #include "content/public/common/referrer.h" | 37 #include "content/public/common/referrer.h" |
38 #include "content/public/common/renderer_preferences.h" | 38 #include "content/public/common/renderer_preferences.h" |
39 #include "content/public/common/web_preferences.h" | 39 #include "content/public/common/web_preferences.h" |
40 #include "content/public/renderer/render_view.h" | 40 #include "content/public/renderer/render_view.h" |
41 #include "content/renderer/render_frame_impl.h" | 41 #include "content/renderer/render_frame_impl.h" |
42 #include "content/renderer/render_widget.h" | 42 #include "content/renderer/render_widget.h" |
43 #include "content/renderer/render_widget_owner_delegate.h" | 43 #include "content/renderer/render_widget_owner_delegate.h" |
44 #include "content/renderer/stats_collection_observer.h" | 44 #include "content/renderer/stats_collection_observer.h" |
45 #include "ipc/ipc_platform_file.h" | 45 #include "ipc/ipc_platform_file.h" |
| 46 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
46 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 47 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
47 #include "third_party/WebKit/public/web/WebAXObject.h" | 48 #include "third_party/WebKit/public/web/WebAXObject.h" |
48 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 49 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
49 #include "third_party/WebKit/public/web/WebDataSource.h" | 50 #include "third_party/WebKit/public/web/WebDataSource.h" |
50 #include "third_party/WebKit/public/web/WebElement.h" | 51 #include "third_party/WebKit/public/web/WebElement.h" |
51 #include "third_party/WebKit/public/web/WebFrameWidget.h" | 52 #include "third_party/WebKit/public/web/WebFrameWidget.h" |
52 #include "third_party/WebKit/public/web/WebHistoryItem.h" | 53 #include "third_party/WebKit/public/web/WebHistoryItem.h" |
53 #include "third_party/WebKit/public/web/WebIconURL.h" | 54 #include "third_party/WebKit/public/web/WebIconURL.h" |
54 #include "third_party/WebKit/public/web/WebInputEvent.h" | |
55 #include "third_party/WebKit/public/web/WebNavigationType.h" | 55 #include "third_party/WebKit/public/web/WebNavigationType.h" |
56 #include "third_party/WebKit/public/web/WebNode.h" | 56 #include "third_party/WebKit/public/web/WebNode.h" |
57 #include "third_party/WebKit/public/web/WebViewClient.h" | 57 #include "third_party/WebKit/public/web/WebViewClient.h" |
58 #include "ui/base/window_open_disposition.h" | 58 #include "ui/base/window_open_disposition.h" |
59 #include "ui/gfx/geometry/rect.h" | 59 #include "ui/gfx/geometry/rect.h" |
60 #include "ui/gfx/geometry/rect_f.h" | 60 #include "ui/gfx/geometry/rect_f.h" |
61 #include "ui/surface/transport_dib.h" | 61 #include "ui/surface/transport_dib.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" |
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
843 // use the Observer interface to filter IPC messages and receive frame change | 843 // use the Observer interface to filter IPC messages and receive frame change |
844 // notifications. | 844 // notifications. |
845 // --------------------------------------------------------------------------- | 845 // --------------------------------------------------------------------------- |
846 | 846 |
847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
848 }; | 848 }; |
849 | 849 |
850 } // namespace content | 850 } // namespace content |
851 | 851 |
852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |