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/platform/WebPageVisibilityState.h" | 18 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" |
19 #include "third_party/WebKit/public/web/WebNavigationPolicy.h" | 19 #include "third_party/WebKit/public/web/WebNavigationPolicy.h" |
20 | 20 |
21 class GURL; | |
22 | |
23 namespace blink { | 21 namespace blink { |
24 class WebFrame; | 22 class WebFrame; |
25 class WebLocalFrame; | 23 class WebLocalFrame; |
26 class WebPlugin; | 24 class WebPlugin; |
27 class WebURLRequest; | 25 class WebURLRequest; |
28 class WebURLResponse; | |
29 struct WebPluginParams; | 26 struct WebPluginParams; |
30 } | 27 } |
31 | 28 |
32 namespace gfx { | 29 namespace gfx { |
33 class Range; | 30 class Range; |
34 class Size; | 31 class Size; |
35 } | 32 } |
36 | 33 |
37 namespace service_manager { | 34 namespace service_manager { |
38 class InterfaceRegistry; | 35 class InterfaceRegistry; |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 | 246 |
250 private: | 247 private: |
251 // This interface should only be implemented inside content. | 248 // This interface should only be implemented inside content. |
252 friend class RenderFrameImpl; | 249 friend class RenderFrameImpl; |
253 RenderFrame() {} | 250 RenderFrame() {} |
254 }; | 251 }; |
255 | 252 |
256 } // namespace content | 253 } // namespace content |
257 | 254 |
258 #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ | 255 #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ |
OLD | NEW |