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

Unified Diff: chrome/browser/tab_contents/tab_contents.h

Issue 339030: Add initial implementation of AutoFill++. This implementation is hidden behi... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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/tab_contents/tab_contents.h
===================================================================
--- chrome/browser/tab_contents/tab_contents.h (revision 30247)
+++ chrome/browser/tab_contents/tab_contents.h (working copy)
@@ -67,10 +67,11 @@
class Message;
}
-class FormFieldHistoryManager;
+class AutoFillManager;
class BlockedPopupContainer;
class DOMUI;
class DownloadItem;
+class FormFieldHistoryManager;
class LoadNotificationDetails;
class OmniboxSearchHint;
class PasswordManager;
@@ -82,11 +83,11 @@
class TabContentsFactory;
class SkBitmap;
class SiteInstance;
+class TabContents;
class TabContentsView;
struct ThumbnailScore;
struct ViewHostMsg_FrameNavigate_Params;
struct ViewHostMsg_DidPrintPage_Params;
-class TabContents;
// Describes what goes in the main content area of a tab. TabContents is
// the only type of TabContents, and these should be merged together.
@@ -836,6 +837,7 @@
virtual RenderViewHostDelegate::FavIcon* GetFavIconDelegate();
virtual RenderViewHostDelegate::FormFieldHistory*
GetFormFieldHistoryDelegate();
+ virtual RenderViewHostDelegate::AutoFill* GetAutoFillDelegate();
virtual TabContents* GetAsTabContents();
virtual void AddBlockedNotice(const GURL& url, const string16& reason);
virtual ViewType::Type GetRenderViewType() const;
@@ -992,6 +994,9 @@
// FormFieldHistoryManager, lazily created.
scoped_ptr<FormFieldHistoryManager> form_field_history_manager_;
+ // AutoFillManager, lazily created.
+ scoped_ptr<AutoFillManager> autofill_manager_;
+
// PasswordManager, lazily created.
scoped_ptr<PasswordManager> password_manager_;
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_delegate.cc ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698