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

Unified Diff: content/browser/tab_contents/tab_contents_view_win.h

Issue 9700023: Move creation of content TabContentsViews to content so that we can hide these headers through DEPS… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 9 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: content/browser/tab_contents/tab_contents_view_win.h
===================================================================
--- content/browser/tab_contents/tab_contents_view_win.h (revision 126521)
+++ content/browser/tab_contents/tab_contents_view_win.h (working copy)
@@ -20,7 +20,7 @@
class WebContentsDragWin;
namespace content {
-class WebContentsViewWinDelegate;
+class WebContentsViewDelegate;
}
// An implementation of WebContentsView for Windows.
@@ -29,7 +29,7 @@
public:
// TODO(jam): make this take a TabContents once it's created from content.
TabContentsViewWin(content::WebContents* web_contents,
- content::WebContentsViewWinDelegate* delegate);
+ content::WebContentsViewDelegate* delegate);
virtual ~TabContentsViewWin();
BEGIN_MSG_MAP_EX(TabContentsViewWin)
@@ -130,7 +130,7 @@
RenderWidgetHostViewWin* view_;
- scoped_ptr<content::WebContentsViewWinDelegate> delegate_;
+ scoped_ptr<content::WebContentsViewDelegate> delegate_;
// The helper object that handles drag destination related interactions with
// Windows.

Powered by Google App Engine
This is Rietveld 408576698