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_PUBLIC_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ |
6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "content/public/common/browser_controls_state.h" | 15 #include "content/public/common/browser_controls_state.h" |
16 #include "ipc/ipc_sender.h" | 16 #include "ipc/ipc_sender.h" |
17 #include "ui/gfx/geometry/rect_f.h" | 17 #include "ui/gfx/geometry/rect_f.h" |
18 #include "ui/gfx/native_widget_types.h" | 18 #include "ui/gfx/native_widget_types.h" |
19 | 19 |
20 namespace blink { | 20 namespace blink { |
21 class WebElement; | 21 class WebElement; |
22 class WebFrame; | 22 class WebFrame; |
23 class WebFrameWidget; | 23 class WebFrameWidget; |
24 class WebLocalFrame; | |
25 class WebNode; | |
26 class WebString; | |
27 class WebURLRequest; | |
28 class WebView; | 24 class WebView; |
29 struct WebContextMenuData; | |
30 struct WebRect; | 25 struct WebRect; |
31 } // namespace blink | 26 } // namespace blink |
32 | 27 |
33 namespace gfx { | 28 namespace gfx { |
34 class Point; | |
35 class Size; | 29 class Size; |
36 } | 30 } |
37 | 31 |
38 namespace content { | 32 namespace content { |
39 | 33 |
40 class RenderFrame; | 34 class RenderFrame; |
41 class RenderViewVisitor; | 35 class RenderViewVisitor; |
42 struct WebPreferences; | 36 struct WebPreferences; |
43 | 37 |
44 // DEPRECATED: RenderView is being removed as part of the SiteIsolation project. | 38 // DEPRECATED: RenderView is being removed as part of the SiteIsolation project. |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 | 135 |
142 private: | 136 private: |
143 // This interface should only be implemented inside content. | 137 // This interface should only be implemented inside content. |
144 friend class RenderViewImpl; | 138 friend class RenderViewImpl; |
145 RenderView() {} | 139 RenderView() {} |
146 }; | 140 }; |
147 | 141 |
148 } // namespace content | 142 } // namespace content |
149 | 143 |
150 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ | 144 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |