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

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

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.cc
===================================================================
--- content/browser/tab_contents/tab_contents_view_win.cc (revision 126521)
+++ content/browser/tab_contents/tab_contents_view_win.cc (working copy)
@@ -13,13 +13,13 @@
#include "content/browser/tab_contents/web_contents_drag_win.h"
#include "content/browser/tab_contents/web_drag_dest_win.h"
#include "content/public/browser/web_contents_delegate.h"
-#include "content/public/browser/web_contents_view_win_delegate.h"
+#include "content/public/browser/web_contents_view_delegate.h"
#include "ui/gfx/screen.h"
using content::RenderViewHost;
using content::RenderWidgetHostView;
using content::WebContents;
-using content::WebContentsViewWinDelegate;
+using content::WebContentsViewDelegate;
namespace {
@@ -57,7 +57,7 @@
} // namespace namespace
TabContentsViewWin::TabContentsViewWin(WebContents* web_contents,
- WebContentsViewWinDelegate* delegate)
+ WebContentsViewDelegate* delegate)
: tab_contents_(static_cast<TabContents*>(web_contents)),
view_(NULL),
delegate_(delegate),

Powered by Google App Engine
This is Rietveld 408576698