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

Unified Diff: chrome/browser/autofill/autofill_interactive_uitest.cc

Issue 17225008: Eliminate AutofillExternalDelegate being a WebContentsUserData (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Response to review Created 7 years, 6 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
Index: chrome/browser/autofill/autofill_interactive_uitest.cc
diff --git a/chrome/browser/autofill/autofill_interactive_uitest.cc b/chrome/browser/autofill/autofill_interactive_uitest.cc
index 242eccce76a3a124d5270edde1f1bbd67360e0a4..2199cb57e4c858193cbc6ca3adc06d056673ecd0 100644
--- a/chrome/browser/autofill/autofill_interactive_uitest.cc
+++ b/chrome/browser/autofill/autofill_interactive_uitest.cc
@@ -206,12 +206,13 @@ class AutofillInteractiveTest : public InProcessBrowserTest {
// allows us to forward keyboard events to the popup directly.
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
- AutofillManager* autofill_manager =
- AutofillDriverImpl::FromWebContents(web_contents)->autofill_manager();
+ AutofillDriverImpl* autofill_driver =
+ AutofillDriverImpl::FromWebContents(web_contents);
+ AutofillManager* autofill_manager = autofill_driver->autofill_manager();
if (autofill_manager->IsNativeUiEnabled()) {
- external_delegate_.reset(
+ scoped_ptr<AutofillExternalDelegate> external_delegate(
new TestAutofillExternalDelegate(web_contents, autofill_manager));
- autofill_manager->SetExternalDelegate(external_delegate_.get());
+ autofill_driver->SetAutofillExternalDelegate(external_delegate.Pass());
}
autofill_manager->SetTestDelegate(&test_delegate_);
}
@@ -302,7 +303,7 @@ class AutofillInteractiveTest : public InProcessBrowserTest {
void SendKeyToPopupAndWait(ui::KeyboardCode key) {
// TODO(isherman): Remove this condition once the WebKit popup UI code is
// removed.
- if (!external_delegate_) {
+ if (!external_delegate()) {
// When testing the WebKit-based UI, route all keys to the page.
SendKeyToPageAndWait(key);
return;
@@ -313,18 +314,20 @@ class AutofillInteractiveTest : public InProcessBrowserTest {
content::NativeWebKeyboardEvent event;
event.windowsKeyCode = key;
test_delegate_.Reset();
- external_delegate_->keyboard_listener()->HandleKeyPressEvent(event);
+ external_delegate()->keyboard_listener()->HandleKeyPressEvent(event);
test_delegate_.Wait();
}
TestAutofillExternalDelegate* external_delegate() {
- return external_delegate_.get();
+ content::WebContents* web_contents =
+ browser()->tab_strip_model()->GetActiveWebContents();
+ AutofillDriverImpl* autofill_driver =
+ AutofillDriverImpl::FromWebContents(web_contents);
+ return static_cast<TestAutofillExternalDelegate*>(
+ autofill_driver->autofill_external_delegate());
}
AutofillManagerTestDelegateImpl test_delegate_;
-
- private:
- scoped_ptr<TestAutofillExternalDelegate> external_delegate_;
};
IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest, DISABLED_AutofillSelectViaTab) {
« no previous file with comments | « chrome/browser/autofill/autofill_browsertest.cc ('k') | components/autofill/browser/autofill_external_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698