| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 #include "third_party/WebKit/public/platform/WebFocusType.h" | 52 #include "third_party/WebKit/public/platform/WebFocusType.h" |
| 53 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" | 53 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" |
| 54 #include "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.moj
om.h" | 54 #include "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.moj
om.h" |
| 55 #include "third_party/WebKit/public/web/WebTextDirection.h" | 55 #include "third_party/WebKit/public/web/WebTextDirection.h" |
| 56 #include "third_party/WebKit/public/web/WebTreeScopeType.h" | 56 #include "third_party/WebKit/public/web/WebTreeScopeType.h" |
| 57 #include "ui/accessibility/ax_node_data.h" | 57 #include "ui/accessibility/ax_node_data.h" |
| 58 #include "ui/base/mojo/window_open_disposition.mojom.h" | 58 #include "ui/base/mojo/window_open_disposition.mojom.h" |
| 59 #include "ui/base/page_transition_types.h" | 59 #include "ui/base/page_transition_types.h" |
| 60 | 60 |
| 61 #if defined(OS_ANDROID) | 61 #if defined(OS_ANDROID) |
| 62 #include "device/nfc/nfc.mojom.h" | 62 #include "services/device/public/interfaces/nfc.mojom.h" |
| 63 #endif | 63 #endif |
| 64 | 64 |
| 65 class GURL; | 65 class GURL; |
| 66 struct AccessibilityHostMsg_EventParams; | 66 struct AccessibilityHostMsg_EventParams; |
| 67 struct AccessibilityHostMsg_FindInPageResultParams; | 67 struct AccessibilityHostMsg_FindInPageResultParams; |
| 68 struct AccessibilityHostMsg_LocationChangeParams; | 68 struct AccessibilityHostMsg_LocationChangeParams; |
| 69 struct FrameHostMsg_DidCommitProvisionalLoad_Params; | 69 struct FrameHostMsg_DidCommitProvisionalLoad_Params; |
| 70 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; | 70 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; |
| 71 struct FrameHostMsg_OpenURL_Params; | 71 struct FrameHostMsg_OpenURL_Params; |
| 72 struct FrameMsg_TextTrackSettings_Params; | 72 struct FrameMsg_TextTrackSettings_Params; |
| (...skipping 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1233 | 1233 |
| 1234 // NOTE: This must be the last member. | 1234 // NOTE: This must be the last member. |
| 1235 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1235 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1236 | 1236 |
| 1237 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1237 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1238 }; | 1238 }; |
| 1239 | 1239 |
| 1240 } // namespace content | 1240 } // namespace content |
| 1241 | 1241 |
| 1242 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1242 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |