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

Unified Diff: content/browser/web_contents/web_drag_dest_mac.mm

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.cc ('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_mac.mm
diff --git a/content/browser/web_contents/web_drag_dest_mac.mm b/content/browser/web_contents/web_drag_dest_mac.mm
index 8a529e838fd123670f660e174d3b4797cf4916c4..b3fefcad00cbc3dabfc30c1a5f3bf0654bd7418d 100644
--- a/content/browser/web_contents/web_drag_dest_mac.mm
+++ b/content/browser/web_contents/web_drag_dest_mac.mm
@@ -18,7 +18,7 @@
#import "ui/base/dragdrop/cocoa_dnd_util.h"
#include "ui/base/window_open_disposition.h"
-using WebKit::WebDragOperationsMask;
+using blink::WebDragOperationsMask;
using content::DropData;
using content::OpenURLParams;
using content::Referrer;
@@ -28,13 +28,13 @@ int GetModifierFlags() {
int modifier_state = 0;
UInt32 currentModifiers = GetCurrentKeyModifiers();
if (currentModifiers & ::shiftKey)
- modifier_state |= WebKit::WebInputEvent::ShiftKey;
+ modifier_state |= blink::WebInputEvent::ShiftKey;
if (currentModifiers & ::controlKey)
- modifier_state |= WebKit::WebInputEvent::ControlKey;
+ modifier_state |= blink::WebInputEvent::ControlKey;
if (currentModifiers & ::optionKey)
- modifier_state |= WebKit::WebInputEvent::AltKey;
+ modifier_state |= blink::WebInputEvent::AltKey;
if (currentModifiers & ::cmdKey)
- 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.cc ('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