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

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

Issue 10546054: TabContentsWrapper -> TabContents, part 5. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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_external_delegate_unittest.cc
diff --git a/chrome/browser/autofill/autofill_external_delegate_unittest.cc b/chrome/browser/autofill/autofill_external_delegate_unittest.cc
index 353b59780d4b42c143a1ad48163e8dcb06ea335a..8b7696de0b5b90f86b7f31c5dd6a7b13b49cb6be 100644
--- a/chrome/browser/autofill/autofill_external_delegate_unittest.cc
+++ b/chrome/browser/autofill/autofill_external_delegate_unittest.cc
@@ -29,9 +29,9 @@ namespace {
class MockAutofillExternalDelegate : public TestAutofillExternalDelegate {
public:
- MockAutofillExternalDelegate(TabContentsWrapper* wrapper,
+ MockAutofillExternalDelegate(TabContents* tab_contents,
AutofillManager* autofill_manger)
- : TestAutofillExternalDelegate(wrapper, autofill_manger) {}
+ : TestAutofillExternalDelegate(tab_contents, autofill_manger) {}
~MockAutofillExternalDelegate() {}
MOCK_METHOD4(ApplyAutofillSuggestions, void(
@@ -56,7 +56,7 @@ class MockAutofillExternalDelegate : public TestAutofillExternalDelegate {
class MockAutofillManager : public AutofillManager {
public:
- explicit MockAutofillManager(TabContentsWrapper* tab_contents)
+ explicit MockAutofillManager(TabContents* tab_contents)
// Force to use the constructor designated for unit test, but we don't
// really need personal_data in this test so we pass a NULL pointer.
: AutofillManager(tab_contents, NULL) {}
« no previous file with comments | « chrome/browser/autofill/autofill_external_delegate_gtk.cc ('k') | chrome/browser/autofill/autofill_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698