Index: chrome/browser/tab_contents/tab_contents.h |
=================================================================== |
--- chrome/browser/tab_contents/tab_contents.h (revision 71973) |
+++ chrome/browser/tab_contents/tab_contents.h (working copy) |
@@ -55,10 +55,6 @@ |
class PrintViewManager; |
} |
-namespace webkit_glue { |
-struct PasswordForm; |
-} |
- |
class AutocompleteHistoryManager; |
class AutoFillManager; |
class BlockedContentContainer; |
@@ -767,6 +763,7 @@ |
FRIEND_TEST_ALL_PREFIXES(TabContentsTest, NoJSMessageOnInterstitials); |
FRIEND_TEST_ALL_PREFIXES(TabContentsTest, UpdateTitle); |
FRIEND_TEST_ALL_PREFIXES(TabContentsTest, CrossSiteCantPreemptAfterUnload); |
+ FRIEND_TEST_ALL_PREFIXES(FormStructureBrowserTest, HTMLFiles); |
// Temporary until the view/contents separation is complete. |
friend class TabContentsView; |
@@ -1014,10 +1011,6 @@ |
virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, |
const std::string& json_arguments, |
IPC::Message* reply_msg); |
- virtual void PasswordFormsFound( |
- const std::vector<webkit_glue::PasswordForm>& forms); |
- virtual void PasswordFormsVisible( |
- const std::vector<webkit_glue::PasswordForm>& visible_forms); |
virtual void PageHasOSDD(RenderViewHost* render_view_host, |
int32 page_id, |
const GURL& url, |
@@ -1349,9 +1342,6 @@ |
// (full-page plugins for now only) permissions. |
int content_restrictions_; |
- // All the IPC message filters for this render view. |
- std::vector<IPC::Channel::Listener*> message_filters_; |
- |
DISALLOW_COPY_AND_ASSIGN(TabContents); |
}; |