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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 const JavaScriptResultCallback& callback) override; | 142 const JavaScriptResultCallback& callback) override; |
143 void ExecuteJavaScriptWithUserGestureForTests( | 143 void ExecuteJavaScriptWithUserGestureForTests( |
144 const base::string16& javascript) override; | 144 const base::string16& javascript) override; |
145 void ActivateFindInPageResultForAccessibility(int request_id) override; | 145 void ActivateFindInPageResultForAccessibility(int request_id) override; |
146 void InsertVisualStateCallback(const VisualStateCallback& callback) override; | 146 void InsertVisualStateCallback(const VisualStateCallback& callback) override; |
147 RenderViewHost* GetRenderViewHost() override; | 147 RenderViewHost* GetRenderViewHost() override; |
148 ServiceRegistry* GetServiceRegistry() override; | 148 ServiceRegistry* GetServiceRegistry() override; |
149 blink::WebPageVisibilityState GetVisibilityState() override; | 149 blink::WebPageVisibilityState GetVisibilityState() override; |
150 bool IsRenderFrameLive() override; | 150 bool IsRenderFrameLive() override; |
151 int GetProxyCount() override; | 151 int GetProxyCount() override; |
152 #if defined(OS_ANDROID) | |
153 void ActivateNearestFindResult(int request_id, float x, float y) override; | |
154 void RequestFindMatchRects(int current_version) override; | |
155 #endif | |
156 | 152 |
157 // IPC::Sender | 153 // IPC::Sender |
158 bool Send(IPC::Message* msg) override; | 154 bool Send(IPC::Message* msg) override; |
159 | 155 |
160 // IPC::Listener | 156 // IPC::Listener |
161 bool OnMessageReceived(const IPC::Message& msg) override; | 157 bool OnMessageReceived(const IPC::Message& msg) override; |
162 | 158 |
163 // BrowserAccessibilityDelegate | 159 // BrowserAccessibilityDelegate |
164 void AccessibilitySetFocus(int acc_obj_id) override; | 160 void AccessibilitySetFocus(int acc_obj_id) override; |
165 void AccessibilityDoDefaultAction(int acc_obj_id) override; | 161 void AccessibilityDoDefaultAction(int acc_obj_id) override; |
(...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
970 | 966 |
971 // NOTE: This must be the last member. | 967 // NOTE: This must be the last member. |
972 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 968 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
973 | 969 |
974 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 970 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
975 }; | 971 }; |
976 | 972 |
977 } // namespace content | 973 } // namespace content |
978 | 974 |
979 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 975 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |