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

Unified Diff: chrome/browser/autofill_manager.h

Issue 279001: Move autofill related WebView{Delegate} methods into the WebKit API.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « no previous file | chrome/browser/autofill_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill_manager.h
===================================================================
--- chrome/browser/autofill_manager.h (revision 29209)
+++ chrome/browser/autofill_manager.h (working copy)
@@ -30,11 +30,11 @@
// RenderViewHostDelegate::Autofill implementation.
virtual void AutofillFormSubmitted(const webkit_glue::AutofillForm& form);
- virtual bool GetAutofillSuggestions(int request_id,
- const std::wstring& name,
- const std::wstring& prefix);
- virtual void RemoveAutofillEntry(const std::wstring& name,
- const std::wstring& value);
+ virtual bool GetAutofillSuggestions(int query_id,
+ const string16& name,
+ const string16& prefix);
+ virtual void RemoveAutofillEntry(const string16& name,
+ const string16& value);
// WebDataServiceConsumer implementation.
virtual void OnWebDataServiceRequestDone(WebDataService::Handle h,
@@ -55,7 +55,7 @@
// is queried on another thread, we record the query handle until we
// get called back.
WebDataService::Handle pending_query_handle_;
- int request_id_;
+ int query_id_;
DISALLOW_COPY_AND_ASSIGN(AutofillManager);
};
« no previous file with comments | « no previous file | chrome/browser/autofill_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698