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

Unified Diff: webkit/glue/webframe.h

Issue 62032: Stop serializing WebString over IPC. The new rule is that only POD (plain ol... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/build/WebKit/WebKit.vcproj ('k') | webkit/glue/webframe_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webframe.h
===================================================================
--- webkit/glue/webframe.h (revision 13158)
+++ webkit/glue/webframe.h (working copy)
@@ -25,7 +25,7 @@
namespace WebKit {
struct WebConsoleMessage;
-struct WebFindInPageRequest;
+struct WebFindOptions;
struct WebScriptSource;
}
@@ -218,7 +218,9 @@
// If no match is found, this function clears all tickmarks and highlighting.
//
// Returns true if the search string was found, false otherwise.
- virtual bool Find(const WebKit::WebFindInPageRequest& request,
+ virtual bool Find(int request_id,
+ const string16& search_text,
+ const WebKit::WebFindOptions& options,
bool wrap_within_frame,
gfx::Rect* selection_rect) = 0;
@@ -241,7 +243,9 @@
// cancel at any time (see CancelPendingScopingEffort). The parameter Request
// specifies what to look for and Reset signals whether this is a brand new
// request or a continuation of the last scoping effort.
- virtual void ScopeStringMatches(const WebKit::WebFindInPageRequest& request,
+ virtual void ScopeStringMatches(int request_id,
+ const string16& search_text,
+ const WebKit::WebFindOptions& options,
bool reset) = 0;
// Cancels any outstanding requests for scoping string matches on a frame.
« no previous file with comments | « webkit/build/WebKit/WebKit.vcproj ('k') | webkit/glue/webframe_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698