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

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

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_manager.h
diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h
index d5c58673f92a34acdcde6517bbd029f005167997..0776c3e93c2f82f9cb331302f28c67927bf30701 100644
--- a/chrome/browser/autofill/autofill_manager.h
+++ b/chrome/browser/autofill/autofill_manager.h
@@ -37,7 +37,6 @@ class PersonalDataManager;
class PrefService;
class ProfileSyncService;
class TabContents;
-typedef TabContents TabContentsWrapper;
struct ViewHostMsg_FrameNavigate_Params;
@@ -74,7 +73,7 @@ class AutofillManager : public content::NotificationObserver,
public ProfileSyncServiceObserver,
public base::RefCounted<AutofillManager> {
public:
- explicit AutofillManager(TabContentsWrapper* tab_contents);
+ explicit AutofillManager(TabContents* tab_contents);
// Registers our Enable/Disable Autofill pref.
static void RegisterUserPrefs(PrefService* prefs);
@@ -118,7 +117,7 @@ class AutofillManager : public content::NotificationObserver,
typedef std::pair<std::string, size_t> GUIDPair;
// Test code should prefer to use this constructor.
- AutofillManager(TabContentsWrapper* tab_contents,
+ AutofillManager(TabContents* tab_contents,
PersonalDataManager* personal_data);
// Returns the value of the AutofillEnabled pref.
@@ -318,8 +317,8 @@ class AutofillManager : public content::NotificationObserver,
void SendAutofillTypePredictions(
const std::vector<FormStructure*>& forms) const;
- // The owning TabContentsWrapper.
- TabContentsWrapper* tab_contents_wrapper_;
+ // The owning TabContents.
+ TabContents* tab_contents_;
// The personal data manager, used to save and load personal data to/from the
// web database. This is overridden by the AutofillManagerTest.
« no previous file with comments | « chrome/browser/autofill/autofill_external_delegate_unittest.cc ('k') | chrome/browser/autofill/autofill_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698