| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 const JavaScriptResultCallback& callback, | 141 const JavaScriptResultCallback& callback, |
| 142 int world_id) override; | 142 int world_id) override; |
| 143 void ExecuteJavaScriptForTests(const base::string16& javascript) override; | 143 void ExecuteJavaScriptForTests(const base::string16& javascript) override; |
| 144 void ExecuteJavaScriptForTests( | 144 void ExecuteJavaScriptForTests( |
| 145 const base::string16& javascript, | 145 const base::string16& javascript, |
| 146 const JavaScriptResultCallback& callback) override; | 146 const JavaScriptResultCallback& callback) override; |
| 147 void ExecuteJavaScriptWithUserGestureForTests( | 147 void ExecuteJavaScriptWithUserGestureForTests( |
| 148 const base::string16& javascript) override; | 148 const base::string16& javascript) override; |
| 149 void ActivateFindInPageResultForAccessibility(int request_id) override; | 149 void ActivateFindInPageResultForAccessibility(int request_id) override; |
| 150 void InsertVisualStateCallback(const VisualStateCallback& callback) override; | 150 void InsertVisualStateCallback(const VisualStateCallback& callback) override; |
| 151 void CopyImageAt(int x, int y) override; |
| 152 void SaveImageAt(int x, int y) override; |
| 151 RenderViewHost* GetRenderViewHost() override; | 153 RenderViewHost* GetRenderViewHost() override; |
| 152 ServiceRegistry* GetServiceRegistry() override; | 154 ServiceRegistry* GetServiceRegistry() override; |
| 153 blink::WebPageVisibilityState GetVisibilityState() override; | 155 blink::WebPageVisibilityState GetVisibilityState() override; |
| 154 bool IsRenderFrameLive() override; | 156 bool IsRenderFrameLive() override; |
| 155 int GetProxyCount() override; | 157 int GetProxyCount() override; |
| 156 void FilesSelectedInChooser(const std::vector<FileChooserFileInfo>& files, | 158 void FilesSelectedInChooser(const std::vector<FileChooserFileInfo>& files, |
| 157 FileChooserParams::Mode permissions) override; | 159 FileChooserParams::Mode permissions) override; |
| 158 | 160 |
| 159 // IPC::Sender | 161 // IPC::Sender |
| 160 bool Send(IPC::Message* msg) override; | 162 bool Send(IPC::Message* msg) override; |
| (...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1004 | 1006 |
| 1005 // NOTE: This must be the last member. | 1007 // NOTE: This must be the last member. |
| 1006 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1008 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1007 | 1009 |
| 1008 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1010 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1009 }; | 1011 }; |
| 1010 | 1012 |
| 1011 } // namespace content | 1013 } // namespace content |
| 1012 | 1014 |
| 1013 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1015 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |