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 10 matching lines...) Expand all Loading... |
21 #include "base/memory/weak_ptr.h" | 21 #include "base/memory/weak_ptr.h" |
22 #include "base/strings/string16.h" | 22 #include "base/strings/string16.h" |
23 #include "base/supports_user_data.h" | 23 #include "base/supports_user_data.h" |
24 #include "base/time/time.h" | 24 #include "base/time/time.h" |
25 #include "build/build_config.h" | 25 #include "build/build_config.h" |
26 #include "content/browser/accessibility/browser_accessibility_manager.h" | 26 #include "content/browser/accessibility/browser_accessibility_manager.h" |
27 #include "content/browser/bad_message.h" | 27 #include "content/browser/bad_message.h" |
28 #include "content/browser/loader/global_routing_id.h" | 28 #include "content/browser/loader/global_routing_id.h" |
29 #include "content/browser/site_instance_impl.h" | 29 #include "content/browser/site_instance_impl.h" |
30 #include "content/browser/webui/web_ui_impl.h" | 30 #include "content/browser/webui/web_ui_impl.h" |
31 #include "content/common/accessibility_mode_enums.h" | 31 #include "content/common/accessibility_mode.h" |
32 #include "content/common/ax_content_node_data.h" | 32 #include "content/common/ax_content_node_data.h" |
33 #include "content/common/content_export.h" | 33 #include "content/common/content_export.h" |
34 #include "content/common/content_security_policy/content_security_policy.h" | 34 #include "content/common/content_security_policy/content_security_policy.h" |
35 #include "content/common/download/mhtml_save_status.h" | 35 #include "content/common/download/mhtml_save_status.h" |
36 #include "content/common/frame.mojom.h" | 36 #include "content/common/frame.mojom.h" |
37 #include "content/common/frame_message_enums.h" | 37 #include "content/common/frame_message_enums.h" |
38 #include "content/common/frame_replication_state.h" | 38 #include "content/common/frame_replication_state.h" |
39 #include "content/common/image_downloader/image_downloader.mojom.h" | 39 #include "content/common/image_downloader/image_downloader.mojom.h" |
40 #include "content/common/navigation_params.h" | 40 #include "content/common/navigation_params.h" |
41 #include "content/public/browser/render_frame_host.h" | 41 #include "content/public/browser/render_frame_host.h" |
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1138 | 1138 |
1139 // NOTE: This must be the last member. | 1139 // NOTE: This must be the last member. |
1140 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1140 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
1141 | 1141 |
1142 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1142 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
1143 }; | 1143 }; |
1144 | 1144 |
1145 } // namespace content | 1145 } // namespace content |
1146 | 1146 |
1147 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1147 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |