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

Unified Diff: chrome/browser/tab_contents/tab_contents_view_gtk.cc

Issue 9114047: Move RenderViewHostDelegateViewHelper to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: chrome/browser/tab_contents/tab_contents_view_gtk.cc
diff --git a/chrome/browser/tab_contents/tab_contents_view_gtk.cc b/chrome/browser/tab_contents/tab_contents_view_gtk.cc
index ece4546781f7ec56596319c01297d88ab5c7df1d..08d04636740f5b59b0c95ce598dfca7946814139 100644
--- a/chrome/browser/tab_contents/tab_contents_view_gtk.cc
+++ b/chrome/browser/tab_contents/tab_contents_view_gtk.cc
@@ -333,45 +333,45 @@ gboolean TabContentsViewGtk::OnFocus(GtkWidget* widget,
void TabContentsViewGtk::CreateNewWindow(
int route_id,
const ViewHostMsg_CreateWindow_Params& params) {
- delegate_view_helper_.CreateNewWindow(tab_contents_, route_id, params);
+ tab_contents_view_helper_.CreateNewWindow(tab_contents_, route_id, params);
}
void TabContentsViewGtk::CreateNewWidget(
int route_id, WebKit::WebPopupType popup_type) {
- delegate_view_helper_.CreateNewWidget(tab_contents_,
- route_id,
- false,
- popup_type);
+ tab_contents_view_helper_.CreateNewWidget(tab_contents_,
+ route_id,
+ false,
+ popup_type);
}
void TabContentsViewGtk::CreateNewFullscreenWidget(int route_id) {
- delegate_view_helper_.CreateNewWidget(tab_contents_,
- route_id,
- true,
- WebKit::WebPopupTypeNone);
+ tab_contents_view_helper_.CreateNewWidget(tab_contents_,
+ route_id,
+ true,
+ WebKit::WebPopupTypeNone);
}
void TabContentsViewGtk::ShowCreatedWindow(int route_id,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture) {
- delegate_view_helper_.ShowCreatedWindow(
+ tab_contents_view_helper_.ShowCreatedWindow(
tab_contents_, route_id, disposition, initial_pos, user_gesture);
}
void TabContentsViewGtk::ShowCreatedWidget(
int route_id, const gfx::Rect& initial_pos) {
- delegate_view_helper_.ShowCreatedWidget(tab_contents_,
- route_id,
- false,
- initial_pos);
+ tab_contents_view_helper_.ShowCreatedWidget(tab_contents_,
+ route_id,
+ false,
+ initial_pos);
}
void TabContentsViewGtk::ShowCreatedFullscreenWidget(int route_id) {
- delegate_view_helper_.ShowCreatedWidget(tab_contents_,
- route_id,
- true,
- gfx::Rect());
+ tab_contents_view_helper_.ShowCreatedWidget(tab_contents_,
+ route_id,
+ true,
+ gfx::Rect());
}
void TabContentsViewGtk::ShowContextMenu(const ContextMenuParams& params) {

Powered by Google App Engine
This is Rietveld 408576698