| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 struct AccessibilityHostMsg_FindInPageResultParams; | 51 struct AccessibilityHostMsg_FindInPageResultParams; |
| 52 struct AccessibilityHostMsg_LocationChangeParams; | 52 struct AccessibilityHostMsg_LocationChangeParams; |
| 53 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; | 53 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; |
| 54 struct FrameHostMsg_OpenURL_Params; | 54 struct FrameHostMsg_OpenURL_Params; |
| 55 struct FrameMsg_TextTrackSettings_Params; | 55 struct FrameMsg_TextTrackSettings_Params; |
| 56 #if defined(USE_EXTERNAL_POPUP_MENU) | 56 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 57 struct FrameHostMsg_ShowPopup_Params; | 57 struct FrameHostMsg_ShowPopup_Params; |
| 58 #endif | 58 #endif |
| 59 | 59 |
| 60 namespace base { | 60 namespace base { |
| 61 class FilePath; | |
| 62 class ListValue; | 61 class ListValue; |
| 63 } | 62 } |
| 64 | 63 |
| 65 namespace blink { | 64 namespace blink { |
| 66 namespace mojom { | 65 namespace mojom { |
| 67 class WebBluetoothService; | 66 class WebBluetoothService; |
| 68 } | 67 } |
| 69 } | 68 } |
| 70 | 69 |
| 71 namespace gfx { | 70 namespace gfx { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 89 class RenderWidgetHostView; | 88 class RenderWidgetHostView; |
| 90 class RenderWidgetHostViewBase; | 89 class RenderWidgetHostViewBase; |
| 91 class ResourceRequestBody; | 90 class ResourceRequestBody; |
| 92 class StreamHandle; | 91 class StreamHandle; |
| 93 class TimeoutMonitor; | 92 class TimeoutMonitor; |
| 94 class WebBluetoothServiceImpl; | 93 class WebBluetoothServiceImpl; |
| 95 struct ContentSecurityPolicyHeader; | 94 struct ContentSecurityPolicyHeader; |
| 96 struct ContextMenuParams; | 95 struct ContextMenuParams; |
| 97 struct FileChooserParams; | 96 struct FileChooserParams; |
| 98 struct FrameOwnerProperties; | 97 struct FrameOwnerProperties; |
| 99 struct GlobalRequestID; | |
| 100 struct FileChooserParams; | 98 struct FileChooserParams; |
| 101 struct Referrer; | |
| 102 struct ResourceResponse; | 99 struct ResourceResponse; |
| 103 | 100 |
| 104 class CONTENT_EXPORT RenderFrameHostImpl | 101 class CONTENT_EXPORT RenderFrameHostImpl |
| 105 : public RenderFrameHost, | 102 : public RenderFrameHost, |
| 106 NON_EXPORTED_BASE(public mojom::FrameHost), | 103 NON_EXPORTED_BASE(public mojom::FrameHost), |
| 107 public BrowserAccessibilityDelegate, | 104 public BrowserAccessibilityDelegate, |
| 108 public SiteInstanceImpl::Observer, | 105 public SiteInstanceImpl::Observer, |
| 109 public NON_EXPORTED_BASE( | 106 public NON_EXPORTED_BASE( |
| 110 service_manager::InterfaceFactory<media::mojom::InterfaceFactory>) { | 107 service_manager::InterfaceFactory<media::mojom::InterfaceFactory>) { |
| 111 public: | 108 public: |
| (...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 remote_associated_interfaces_; | 1057 remote_associated_interfaces_; |
| 1061 // NOTE: This must be the last member. | 1058 // NOTE: This must be the last member. |
| 1062 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1059 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1063 | 1060 |
| 1064 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1061 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1065 }; | 1062 }; |
| 1066 | 1063 |
| 1067 } // namespace content | 1064 } // namespace content |
| 1068 | 1065 |
| 1069 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1066 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |