Index: chrome/browser/ui/autofill/tab_autofill_manager_delegate.cc |
diff --git a/chrome/browser/ui/autofill/tab_autofill_manager_delegate.cc b/chrome/browser/ui/autofill/tab_autofill_manager_delegate.cc |
index 117b7026975b2805802ab5ff1b94e1ba13346142..dcb06baebc9a24770f8728cf3687e59b38d18c47 100644 |
--- a/chrome/browser/ui/autofill/tab_autofill_manager_delegate.cc |
+++ b/chrome/browser/ui/autofill/tab_autofill_manager_delegate.cc |
@@ -21,7 +21,9 @@ |
#include "content/public/common/password_form.h" |
#include "ui/gfx/rect.h" |
-DEFINE_WEB_CONTENTS_USER_DATA_KEY(TabAutofillManagerDelegate); |
+DEFINE_WEB_CONTENTS_USER_DATA_KEY(autofill::TabAutofillManagerDelegate); |
+ |
+namespace autofill { |
TabAutofillManagerDelegate::TabAutofillManagerDelegate( |
content::WebContents* web_contents) |
@@ -89,6 +91,8 @@ void TabAutofillManagerDelegate::ShowRequestAutocompleteDialog( |
const FormData& form, |
const GURL& source_url, |
const content::SSLStatus& ssl_status, |
+ const AutofillMetrics& metric_logger, |
+ DialogRequester requester, |
const base::Callback<void(const FormStructure*)>& callback) { |
HideRequestAutocompleteDialog(); |
@@ -97,6 +101,8 @@ void TabAutofillManagerDelegate::ShowRequestAutocompleteDialog( |
form, |
source_url, |
ssl_status, |
+ metric_logger, |
+ requester, |
callback); |
autofill_dialog_controller_->Show(); |
} |
@@ -118,3 +124,5 @@ void TabAutofillManagerDelegate::DidNavigateMainFrame( |
// through the autocheckout flow (when the behavior is more fleshed out). |
HideRequestAutocompleteDialog(); |
} |
+ |
+} // namespace autofill |