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

Unified Diff: content/browser/web_contents/web_drag_dest_gtk.cc

Issue 11275062: Move content\browser\web_contents to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 2 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 | « content/browser/web_contents/web_drag_dest_gtk.h ('k') | content/browser/web_contents/web_drag_dest_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/web_contents/web_drag_dest_gtk.cc
===================================================================
--- content/browser/web_contents/web_drag_dest_gtk.cc (revision 164713)
+++ content/browser/web_contents/web_drag_dest_gtk.cc (working copy)
@@ -21,7 +21,6 @@
#include "ui/base/dragdrop/gtk_dnd_util.h"
#include "ui/base/gtk/gtk_screen_util.h"
-using content::RenderViewHostImpl;
using WebKit::WebDragOperation;
using WebKit::WebDragOperationNone;
@@ -84,7 +83,7 @@
void WebDragDestGtk::UpdateDragStatus(WebDragOperation operation) {
if (context_) {
is_drop_target_ = operation != WebDragOperationNone;
- gdk_drag_status(context_, content::WebDragOpToGdkDragAction(operation),
+ gdk_drag_status(context_, WebDragOpToGdkDragAction(operation),
drag_over_time_);
}
}
@@ -141,7 +140,7 @@
GetRenderViewHost()->DragTargetDragOver(
ui::ClientPoint(widget_),
ui::ScreenPoint(widget_),
- content::GdkDragActionToWebDragOp(context->actions),
+ GdkDragActionToWebDragOp(context->actions),
GetModifierFlags(widget_));
if (delegate())
@@ -252,7 +251,7 @@
*drop_data_.get(),
ui::ClientPoint(widget_),
ui::ScreenPoint(widget_),
- content::GdkDragActionToWebDragOp(context->actions),
+ GdkDragActionToWebDragOp(context->actions),
GetModifierFlags(widget_));
if (delegate())
« no previous file with comments | « content/browser/web_contents/web_drag_dest_gtk.h ('k') | content/browser/web_contents/web_drag_dest_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698