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

Unified Diff: chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc

Issue 9114047: Move RenderViewHostDelegateViewHelper to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CONTENT_EXPORT Created 8 years, 11 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/ui/views/tab_contents/tab_contents_view_views.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc
diff --git a/chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc b/chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc
index 454117386a63a72c94f348c92370430ade605d2f..2e61ffaeec82e17c69eac76095caf2a87196ca28 100644
--- a/chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc
+++ b/chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc
@@ -301,45 +301,45 @@ void TabContentsViewViews::CloseTab() {
void TabContentsViewViews::CreateNewWindow(
int route_id,
const ViewHostMsg_CreateWindow_Params& params) {
- delegate_view_helper_.CreateNewWindow(web_contents_, route_id, params);
+ tab_contents_view_helper_.CreateNewWindow(web_contents_, route_id, params);
}
void TabContentsViewViews::CreateNewWidget(
int route_id, WebKit::WebPopupType popup_type) {
- delegate_view_helper_.CreateNewWidget(web_contents_,
- route_id,
- false,
- popup_type);
+ tab_contents_view_helper_.CreateNewWidget(web_contents_,
+ route_id,
+ false,
+ popup_type);
}
void TabContentsViewViews::CreateNewFullscreenWidget(int route_id) {
- delegate_view_helper_.CreateNewWidget(web_contents_,
- route_id,
- true,
- WebKit::WebPopupTypeNone);
+ tab_contents_view_helper_.CreateNewWidget(web_contents_,
+ route_id,
+ true,
+ WebKit::WebPopupTypeNone);
}
void TabContentsViewViews::ShowCreatedWindow(int route_id,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture) {
- delegate_view_helper_.ShowCreatedWindow(
+ tab_contents_view_helper_.ShowCreatedWindow(
web_contents_, route_id, disposition, initial_pos, user_gesture);
}
void TabContentsViewViews::ShowCreatedWidget(
int route_id, const gfx::Rect& initial_pos) {
- delegate_view_helper_.ShowCreatedWidget(web_contents_,
- route_id,
- false,
- initial_pos);
+ tab_contents_view_helper_.ShowCreatedWidget(web_contents_,
+ route_id,
+ false,
+ initial_pos);
}
void TabContentsViewViews::ShowCreatedFullscreenWidget(int route_id) {
- delegate_view_helper_.ShowCreatedWidget(web_contents_,
- route_id,
- true,
- gfx::Rect());
+ tab_contents_view_helper_.ShowCreatedWidget(web_contents_,
+ route_id,
+ true,
+ gfx::Rect());
}
void TabContentsViewViews::ShowContextMenu(const ContextMenuParams& params) {
« no previous file with comments | « chrome/browser/ui/views/tab_contents/tab_contents_view_views.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698