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

Unified Diff: chrome/browser/external_tab/external_tab_container_win.h

Issue 10536058: TabContentsWrapper -> TabContents, part 6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: GetOwningTabContentsForWebContents 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/external_tab/external_tab_container_win.h
diff --git a/chrome/browser/external_tab/external_tab_container_win.h b/chrome/browser/external_tab/external_tab_container_win.h
index e9a26d2f9e9e06bbe3d1d865234841b5ef66bcfd..7610503c4d9783ad08546add2365b36c2dea2209 100644
--- a/chrome/browser/external_tab/external_tab_container_win.h
+++ b/chrome/browser/external_tab/external_tab_container_win.h
@@ -32,7 +32,6 @@ class Browser;
class Profile;
class TabContentsContainer;
class TabContents;
-typedef TabContents TabContentsWrapper;
class RenderViewContextMenuViews;
struct NavigationInfo;
@@ -67,7 +66,7 @@ class ExternalTabContainer : public content::WebContentsDelegate,
AutomationResourceMessageFilter* filter);
content::WebContents* web_contents() const;
- TabContentsWrapper* tab_contents_wrapper() { return tab_contents_.get(); }
+ TabContents* tab_contents() { return tab_contents_.get(); }
// Temporary hack so we can send notifications back
void SetTabHandle(int handle);
@@ -82,7 +81,7 @@ class ExternalTabContainer : public content::WebContentsDelegate,
DWORD style,
bool load_requests_via_automation,
bool handle_top_level_requests,
- TabContentsWrapper* existing_tab_contents,
+ TabContents* existing_tab_contents,
const GURL& initial_url,
const GURL& referrer,
bool infobars_enabled,
@@ -245,8 +244,8 @@ class ExternalTabContainer : public content::WebContentsDelegate,
void RunUnloadHandlers(IPC::Message* reply_message);
// Overridden from BlockedContentTabHelperDelegate:
- virtual TabContentsWrapper* GetConstrainingContentsWrapper(
- TabContentsWrapper* source) OVERRIDE;
+ virtual TabContents* GetConstrainingContentsWrapper(
+ TabContents* source) OVERRIDE;
protected:
~ExternalTabContainer();
@@ -284,7 +283,7 @@ class ExternalTabContainer : public content::WebContentsDelegate,
// Creates and initializes the view hierarchy for this ExternalTabContainer.
void SetupExternalTabView();
- scoped_ptr<TabContentsWrapper> tab_contents_;
+ scoped_ptr<TabContents> tab_contents_;
scoped_refptr<AutomationProvider> automation_;
content::NotificationRegistrar registrar_;

Powered by Google App Engine
This is Rietveld 408576698