| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 void ActivateFindInPageResultForAccessibility(int request_id) override; | 165 void ActivateFindInPageResultForAccessibility(int request_id) override; |
| 166 void InsertVisualStateCallback(const VisualStateCallback& callback) override; | 166 void InsertVisualStateCallback(const VisualStateCallback& callback) override; |
| 167 void CopyImageAt(int x, int y) override; | 167 void CopyImageAt(int x, int y) override; |
| 168 void SaveImageAt(int x, int y) override; | 168 void SaveImageAt(int x, int y) override; |
| 169 RenderViewHost* GetRenderViewHost() override; | 169 RenderViewHost* GetRenderViewHost() override; |
| 170 service_manager::BinderRegistry* GetInterfaceRegistry() override; | 170 service_manager::BinderRegistry* GetInterfaceRegistry() override; |
| 171 service_manager::InterfaceProvider* GetRemoteInterfaces() override; | 171 service_manager::InterfaceProvider* GetRemoteInterfaces() override; |
| 172 AssociatedInterfaceProvider* GetRemoteAssociatedInterfaces() override; | 172 AssociatedInterfaceProvider* GetRemoteAssociatedInterfaces() override; |
| 173 blink::WebPageVisibilityState GetVisibilityState() override; | 173 blink::WebPageVisibilityState GetVisibilityState() override; |
| 174 bool IsRenderFrameLive() override; | 174 bool IsRenderFrameLive() override; |
| 175 bool IsCurrent() override; |
| 175 int GetProxyCount() override; | 176 int GetProxyCount() override; |
| 176 void FilesSelectedInChooser(const std::vector<FileChooserFileInfo>& files, | 177 void FilesSelectedInChooser(const std::vector<FileChooserFileInfo>& files, |
| 177 FileChooserParams::Mode permissions) override; | 178 FileChooserParams::Mode permissions) override; |
| 178 bool HasSelection() override; | 179 bool HasSelection() override; |
| 179 void RequestTextSurroundingSelection( | 180 void RequestTextSurroundingSelection( |
| 180 const TextSurroundingSelectionCallback& callback, | 181 const TextSurroundingSelectionCallback& callback, |
| 181 int max_length) override; | 182 int max_length) override; |
| 182 void AllowBindings(int binding_flags) override; | 183 void AllowBindings(int binding_flags) override; |
| 183 int GetEnabledBindings() const override; | 184 int GetEnabledBindings() const override; |
| 184 void BlockRequestsForFrame() override; | 185 void BlockRequestsForFrame() override; |
| (...skipping 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1218 | 1219 |
| 1219 // NOTE: This must be the last member. | 1220 // NOTE: This must be the last member. |
| 1220 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1221 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1221 | 1222 |
| 1222 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1223 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1223 }; | 1224 }; |
| 1224 | 1225 |
| 1225 } // namespace content | 1226 } // namespace content |
| 1226 | 1227 |
| 1227 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1228 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |