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

Unified Diff: chrome/browser/autofill/autofill_external_delegate_gtk.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_gtk.cc
diff --git a/chrome/browser/autofill/autofill_external_delegate_gtk.cc b/chrome/browser/autofill/autofill_external_delegate_gtk.cc
index bbb3f0058b1d9b73ad945e4dd6fce9191bc2ad9b..57df5775fe7f93b9672883ec65e5eb2dbc022490 100644
--- a/chrome/browser/autofill/autofill_external_delegate_gtk.cc
+++ b/chrome/browser/autofill/autofill_external_delegate_gtk.cc
@@ -6,22 +6,22 @@
#include "chrome/browser/ui/gtk/autofill/autofill_popup_view_gtk.h"
#include "chrome/browser/ui/gtk/gtk_theme_service.h"
-#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
+#include "chrome/browser/ui/tab_contents/tab_contents.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_view.h"
AutofillExternalDelegate* AutofillExternalDelegate::Create(
- TabContentsWrapper* tab_contents_wrapper,
+ TabContents* tab_contents,
AutofillManager* autofill_manager) {
- return new AutofillExternalDelegateGtk(tab_contents_wrapper,
+ return new AutofillExternalDelegateGtk(tab_contents,
autofill_manager);
}
AutofillExternalDelegateGtk::AutofillExternalDelegateGtk(
- TabContentsWrapper* tab_contents_wrapper,
+ TabContents* tab_contents,
AutofillManager* autofill_manager)
- : AutofillExternalDelegate(tab_contents_wrapper, autofill_manager),
- web_contents_(tab_contents_wrapper->web_contents()),
+ : AutofillExternalDelegate(tab_contents, autofill_manager),
+ web_contents_(tab_contents->web_contents()),
event_handler_id_(0) {
tab_native_view_ = web_contents_->GetView()->GetNativeView();
}

Powered by Google App Engine
This is Rietveld 408576698