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

Unified Diff: chrome/browser/external_tab_container.h

Issue 62044: Make the RenderViewHostFactory a global. This prevents us from having to pass... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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
« no previous file with comments | « chrome/browser/dom_ui/dom_ui_unittest.cc ('k') | chrome/browser/external_tab_container.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/external_tab_container.h
===================================================================
--- chrome/browser/external_tab_container.h (revision 13136)
+++ chrome/browser/external_tab_container.h (working copy)
@@ -21,7 +21,7 @@
#include "chrome/views/widget/widget.h"
class AutomationProvider;
-class TabContents;
+class WebContents;
class Profile;
class TabContentsContainerView;
// This class serves as the container window for an external tab.
@@ -48,7 +48,7 @@
ExternalTabContainer(AutomationProvider* automation);
~ExternalTabContainer();
- TabContents* tab_contents() const {
+ WebContents* tab_contents() const {
return tab_contents_;
}
@@ -141,7 +141,7 @@
void OnFinalMessage(HWND window);
protected:
- TabContents *tab_contents_;
+ WebContents* tab_contents_;
scoped_refptr<AutomationProvider> automation_;
NotificationRegistrar registrar_;
@@ -153,6 +153,7 @@
unsigned int external_accel_entry_count_;
// A view to handle focus cycling
TabContentsContainerView* tab_contents_container_;
+
private:
// A failed navigation like a 404 is followed in chrome with a success
// navigation for the 404 page. We need to ignore the next navigation
@@ -163,4 +164,4 @@
DISALLOW_COPY_AND_ASSIGN(ExternalTabContainer);
};
-#endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_H__
+#endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_H_
« no previous file with comments | « chrome/browser/dom_ui/dom_ui_unittest.cc ('k') | chrome/browser/external_tab_container.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698