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_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 #include "content/common/ax_content_node_data.h" | 34 #include "content/common/ax_content_node_data.h" |
35 #include "content/common/content_export.h" | 35 #include "content/common/content_export.h" |
36 #include "content/common/content_security_policy/csp_context.h" | 36 #include "content/common/content_security_policy/csp_context.h" |
37 #include "content/common/download/mhtml_save_status.h" | 37 #include "content/common/download/mhtml_save_status.h" |
38 #include "content/common/features.h" | 38 #include "content/common/features.h" |
39 #include "content/common/frame.mojom.h" | 39 #include "content/common/frame.mojom.h" |
40 #include "content/common/frame_message_enums.h" | 40 #include "content/common/frame_message_enums.h" |
41 #include "content/common/frame_replication_state.h" | 41 #include "content/common/frame_replication_state.h" |
42 #include "content/common/image_downloader/image_downloader.mojom.h" | 42 #include "content/common/image_downloader/image_downloader.mojom.h" |
43 #include "content/common/navigation_params.h" | 43 #include "content/common/navigation_params.h" |
44 #include "content/common/url_loader_factory.mojom.h" | |
45 #include "content/public/browser/render_frame_host.h" | 44 #include "content/public/browser/render_frame_host.h" |
46 #include "content/public/common/javascript_dialog_type.h" | 45 #include "content/public/common/javascript_dialog_type.h" |
47 #include "content/public/common/previews_state.h" | 46 #include "content/public/common/previews_state.h" |
| 47 #include "content/public/common/url_loader_factory.mojom.h" |
48 #include "device/wake_lock/public/interfaces/wake_lock_context.mojom.h" | 48 #include "device/wake_lock/public/interfaces/wake_lock_context.mojom.h" |
49 #include "media/mojo/interfaces/interface_factory.mojom.h" | 49 #include "media/mojo/interfaces/interface_factory.mojom.h" |
50 #include "mojo/public/cpp/bindings/binding_set.h" | 50 #include "mojo/public/cpp/bindings/binding_set.h" |
51 #include "mojo/public/cpp/system/data_pipe.h" | 51 #include "mojo/public/cpp/system/data_pipe.h" |
52 #include "net/http/http_response_headers.h" | 52 #include "net/http/http_response_headers.h" |
53 #include "third_party/WebKit/public/platform/WebFocusType.h" | 53 #include "third_party/WebKit/public/platform/WebFocusType.h" |
54 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" | 54 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" |
55 #include "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.moj
om.h" | 55 #include "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.moj
om.h" |
56 #include "third_party/WebKit/public/web/WebTextDirection.h" | 56 #include "third_party/WebKit/public/web/WebTextDirection.h" |
57 #include "third_party/WebKit/public/web/WebTreeScopeType.h" | 57 #include "third_party/WebKit/public/web/WebTreeScopeType.h" |
(...skipping 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1269 | 1269 |
1270 // NOTE: This must be the last member. | 1270 // NOTE: This must be the last member. |
1271 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1271 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
1272 | 1272 |
1273 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1273 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
1274 }; | 1274 }; |
1275 | 1275 |
1276 } // namespace content | 1276 } // namespace content |
1277 | 1277 |
1278 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1278 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |