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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 const JavaScriptResultCallback& callback) override; | 150 const JavaScriptResultCallback& callback) override; |
151 void ExecuteJavaScriptWithUserGestureForTests( | 151 void ExecuteJavaScriptWithUserGestureForTests( |
152 const base::string16& javascript) override; | 152 const base::string16& javascript) override; |
153 void ActivateFindInPageResultForAccessibility(int request_id) override; | 153 void ActivateFindInPageResultForAccessibility(int request_id) override; |
154 void InsertVisualStateCallback(const VisualStateCallback& callback) override; | 154 void InsertVisualStateCallback(const VisualStateCallback& callback) override; |
155 RenderViewHost* GetRenderViewHost() override; | 155 RenderViewHost* GetRenderViewHost() override; |
156 ServiceRegistry* GetServiceRegistry() override; | 156 ServiceRegistry* GetServiceRegistry() override; |
157 blink::WebPageVisibilityState GetVisibilityState() override; | 157 blink::WebPageVisibilityState GetVisibilityState() override; |
158 bool IsRenderFrameLive() override; | 158 bool IsRenderFrameLive() override; |
159 int GetProxyCount() override; | 159 int GetProxyCount() override; |
160 #if defined(OS_ANDROID) | |
161 void ActivateNearestFindResult(int request_id, float x, float y) override; | |
162 void RequestFindMatchRects(int current_version) override; | |
163 #endif | |
164 | 160 |
165 // IPC::Sender | 161 // IPC::Sender |
166 bool Send(IPC::Message* msg) override; | 162 bool Send(IPC::Message* msg) override; |
167 | 163 |
168 // IPC::Listener | 164 // IPC::Listener |
169 bool OnMessageReceived(const IPC::Message& msg) override; | 165 bool OnMessageReceived(const IPC::Message& msg) override; |
170 | 166 |
171 // BrowserAccessibilityDelegate | 167 // BrowserAccessibilityDelegate |
172 void AccessibilitySetFocus(int acc_obj_id) override; | 168 void AccessibilitySetFocus(int acc_obj_id) override; |
173 void AccessibilityDoDefaultAction(int acc_obj_id) override; | 169 void AccessibilityDoDefaultAction(int acc_obj_id) override; |
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
964 | 960 |
965 // NOTE: This must be the last member. | 961 // NOTE: This must be the last member. |
966 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 962 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
967 | 963 |
968 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 964 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
969 }; | 965 }; |
970 | 966 |
971 } // namespace content | 967 } // namespace content |
972 | 968 |
973 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 969 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |