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

Unified Diff: chrome/browser/autofill/autofill_manager.h

Issue 11539003: Pop up requestAutocomplete UI when autofill server hints chrome client that it is in a multipage au… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Updated string. Pop the UI only on first page of the flow. Created 8 years 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
Index: chrome/browser/autofill/autofill_manager.h
diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h
index 20e4ae9415d33df9d975a74230f288064eba793b..6dea63bfc2c8caefdd1d16d3f73bbb6c13d59b95 100644
--- a/chrome/browser/autofill/autofill_manager.h
+++ b/chrome/browser/autofill/autofill_manager.h
@@ -105,6 +105,10 @@ class AutofillManager : public content::WebContentsObserver,
// Remove the specified Autocomplete entry.
void RemoveAutocompleteEntry(const string16& name, const string16& value);
+ void ShowWalletDialog(const FormData& form,
+ const GURL& frame_url,
+ const content::SSLStatus& ssl_status);
+
protected:
// Only test code should subclass AutofillManager.
friend class base::RefCounted<AutofillManager>;
@@ -238,6 +242,9 @@ class AutofillManager : public content::WebContentsObserver,
// Tell the renderer the current interactive autocomplete failed somehow.
void ReturnAutocompleteError();
+ // Passes return data for an ShowWalletDialog call back to the page.
+ void ReturnWalletAutofillData(const FormStructure* result);
+
// Fills |host| with the RenderViewHost for this tab.
// Returns false if Autofill is disabled or if the host is unavailable.
bool GetHost(content::RenderViewHost** host) const WARN_UNUSED_RESULT;

Powered by Google App Engine
This is Rietveld 408576698