Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 1851793002: Implement a shell of FindRequestManager, and hook it up to WebContentsImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments by ncarter. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 const JavaScriptResultCallback& callback) override; 157 const JavaScriptResultCallback& callback) override;
158 void ExecuteJavaScriptWithUserGestureForTests( 158 void ExecuteJavaScriptWithUserGestureForTests(
159 const base::string16& javascript) override; 159 const base::string16& javascript) override;
160 void ActivateFindInPageResultForAccessibility(int request_id) override; 160 void ActivateFindInPageResultForAccessibility(int request_id) override;
161 void InsertVisualStateCallback(const VisualStateCallback& callback) override; 161 void InsertVisualStateCallback(const VisualStateCallback& callback) override;
162 RenderViewHost* GetRenderViewHost() override; 162 RenderViewHost* GetRenderViewHost() override;
163 ServiceRegistry* GetServiceRegistry() override; 163 ServiceRegistry* GetServiceRegistry() override;
164 blink::WebPageVisibilityState GetVisibilityState() override; 164 blink::WebPageVisibilityState GetVisibilityState() override;
165 bool IsRenderFrameLive() override; 165 bool IsRenderFrameLive() override;
166 int GetProxyCount() override; 166 int GetProxyCount() override;
167 #if defined(OS_ANDROID)
168 void ActivateNearestFindResult(int request_id, float x, float y) override;
169 void RequestFindMatchRects(int current_version) override;
170 #endif
171 167
172 // IPC::Sender 168 // IPC::Sender
173 bool Send(IPC::Message* msg) override; 169 bool Send(IPC::Message* msg) override;
174 170
175 // IPC::Listener 171 // IPC::Listener
176 bool OnMessageReceived(const IPC::Message& msg) override; 172 bool OnMessageReceived(const IPC::Message& msg) override;
177 173
178 // BrowserAccessibilityDelegate 174 // BrowserAccessibilityDelegate
179 void AccessibilitySetFocus(int acc_obj_id) override; 175 void AccessibilitySetFocus(int acc_obj_id) override;
180 void AccessibilityDoDefaultAction(int acc_obj_id) override; 176 void AccessibilityDoDefaultAction(int acc_obj_id) override;
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 972
977 // NOTE: This must be the last member. 973 // NOTE: This must be the last member.
978 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 974 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
979 975
980 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 976 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
981 }; 977 };
982 978
983 } // namespace content 979 } // namespace content
984 980
985 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 981 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698