OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ |
6 #define CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ | 6 #define CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 | 11 |
12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "content/public/common/console_message_level.h" | 15 #include "content/public/common/console_message_level.h" |
16 #include "ipc/ipc_listener.h" | 16 #include "ipc/ipc_listener.h" |
17 #include "ipc/ipc_sender.h" | 17 #include "ipc/ipc_sender.h" |
18 #include "third_party/WebKit/public/web/WebNavigationPolicy.h" | 18 #include "third_party/WebKit/public/web/WebNavigationPolicy.h" |
19 | 19 |
20 class GURL; | 20 class GURL; |
21 | 21 |
22 namespace blink { | 22 namespace blink { |
23 class WebElement; | |
24 class WebFrame; | 23 class WebFrame; |
25 class WebLocalFrame; | 24 class WebLocalFrame; |
26 class WebNode; | |
27 class WebPlugin; | 25 class WebPlugin; |
28 class WebURLRequest; | 26 class WebURLRequest; |
29 class WebURLResponse; | 27 class WebURLResponse; |
30 struct WebPluginParams; | 28 struct WebPluginParams; |
31 } | 29 } |
32 | 30 |
33 namespace gfx { | 31 namespace gfx { |
34 class Range; | 32 class Range; |
35 class Size; | 33 class Size; |
36 } | 34 } |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 | 206 |
209 private: | 207 private: |
210 // This interface should only be implemented inside content. | 208 // This interface should only be implemented inside content. |
211 friend class RenderFrameImpl; | 209 friend class RenderFrameImpl; |
212 RenderFrame() {} | 210 RenderFrame() {} |
213 }; | 211 }; |
214 | 212 |
215 } // namespace content | 213 } // namespace content |
216 | 214 |
217 #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ | 215 #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ |
OLD | NEW |