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

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

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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_mac.mm » ('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
diff --git a/content/browser/web_contents/web_drag_dest_gtk.cc b/content/browser/web_contents/web_drag_dest_gtk.cc
index 55f0d9c04a290cc1fb28164b17af8bf3a52a6d64..bb9a4d42a7d5b2b8294a6274394298fbf45c0f79 100644
--- a/content/browser/web_contents/web_drag_dest_gtk.cc
+++ b/content/browser/web_contents/web_drag_dest_gtk.cc
@@ -22,8 +22,8 @@
#include "ui/base/dragdrop/gtk_dnd_util.h"
#include "ui/base/gtk/gtk_screen_util.h"
-using WebKit::WebDragOperation;
-using WebKit::WebDragOperationNone;
+using blink::WebDragOperation;
+using blink::WebDragOperationNone;
namespace content {
@@ -36,13 +36,13 @@ int GetModifierFlags(GtkWidget* widget) {
gdk_window_get_pointer(gtk_widget_get_window(widget), NULL, NULL, &state);
if (state & GDK_SHIFT_MASK)
- modifier_state |= WebKit::WebInputEvent::ShiftKey;
+ modifier_state |= blink::WebInputEvent::ShiftKey;
if (state & GDK_CONTROL_MASK)
- modifier_state |= WebKit::WebInputEvent::ControlKey;
+ modifier_state |= blink::WebInputEvent::ControlKey;
if (state & GDK_MOD1_MASK)
- modifier_state |= WebKit::WebInputEvent::AltKey;
+ modifier_state |= blink::WebInputEvent::AltKey;
if (state & GDK_META_MASK)
- modifier_state |= WebKit::WebInputEvent::MetaKey;
+ modifier_state |= blink::WebInputEvent::MetaKey;
return modifier_state;
}
« no previous file with comments | « content/browser/web_contents/web_drag_dest_gtk.h ('k') | content/browser/web_contents/web_drag_dest_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698