| 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 30 matching lines...) Expand all Loading... |
| 41 #include "content/public/common/previews_state.h" | 41 #include "content/public/common/previews_state.h" |
| 42 #include "media/mojo/interfaces/interface_factory.mojom.h" | 42 #include "media/mojo/interfaces/interface_factory.mojom.h" |
| 43 #include "net/http/http_response_headers.h" | 43 #include "net/http/http_response_headers.h" |
| 44 #include "services/service_manager/public/cpp/interface_factory.h" | 44 #include "services/service_manager/public/cpp/interface_factory.h" |
| 45 #include "services/service_manager/public/cpp/interface_registry.h" | 45 #include "services/service_manager/public/cpp/interface_registry.h" |
| 46 #include "third_party/WebKit/public/platform/WebFocusType.h" | 46 #include "third_party/WebKit/public/platform/WebFocusType.h" |
| 47 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" | 47 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" |
| 48 #include "third_party/WebKit/public/web/WebTextDirection.h" | 48 #include "third_party/WebKit/public/web/WebTextDirection.h" |
| 49 #include "third_party/WebKit/public/web/WebTreeScopeType.h" | 49 #include "third_party/WebKit/public/web/WebTreeScopeType.h" |
| 50 #include "ui/accessibility/ax_node_data.h" | 50 #include "ui/accessibility/ax_node_data.h" |
| 51 #include "ui/base/mojo/window_open_disposition.mojom.h" |
| 51 #include "ui/base/page_transition_types.h" | 52 #include "ui/base/page_transition_types.h" |
| 52 | 53 |
| 53 class GURL; | 54 class GURL; |
| 54 struct AccessibilityHostMsg_EventParams; | 55 struct AccessibilityHostMsg_EventParams; |
| 55 struct AccessibilityHostMsg_FindInPageResultParams; | 56 struct AccessibilityHostMsg_FindInPageResultParams; |
| 56 struct AccessibilityHostMsg_LocationChangeParams; | 57 struct AccessibilityHostMsg_LocationChangeParams; |
| 57 struct FrameHostMsg_DidCommitProvisionalLoad_Params; | 58 struct FrameHostMsg_DidCommitProvisionalLoad_Params; |
| 58 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; | 59 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; |
| 59 struct FrameHostMsg_OpenURL_Params; | 60 struct FrameHostMsg_OpenURL_Params; |
| 60 struct FrameMsg_TextTrackSettings_Params; | 61 struct FrameMsg_TextTrackSettings_Params; |
| (...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 | 1144 |
| 1144 // NOTE: This must be the last member. | 1145 // NOTE: This must be the last member. |
| 1145 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1146 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1146 | 1147 |
| 1147 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1148 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1148 }; | 1149 }; |
| 1149 | 1150 |
| 1150 } // namespace content | 1151 } // namespace content |
| 1151 | 1152 |
| 1152 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1153 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |