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

Unified Diff: content/common/drag_messages.h

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/common/dom_storage/dom_storage_messages.h ('k') | content/common/drag_traits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/drag_messages.h
diff --git a/content/common/drag_messages.h b/content/common/drag_messages.h
index 3e2147886e3b147b293f565a8a92ca97066bada1..1da3c7232f3e667139747899d341878a95e8fdd4 100644
--- a/content/common/drag_messages.h
+++ b/content/common/drag_messages.h
@@ -22,13 +22,13 @@ IPC_MESSAGE_ROUTED5(DragMsg_TargetDragEnter,
content::DropData /* drop_data */,
gfx::Point /* client_pt */,
gfx::Point /* screen_pt */,
- WebKit::WebDragOperationsMask /* ops_allowed */,
+ blink::WebDragOperationsMask /* ops_allowed */,
int /* key_modifiers */)
IPC_MESSAGE_ROUTED4(DragMsg_TargetDragOver,
gfx::Point /* client_pt */,
gfx::Point /* screen_pt */,
- WebKit::WebDragOperationsMask /* ops_allowed */,
+ blink::WebDragOperationsMask /* ops_allowed */,
int /* key_modifiers */)
IPC_MESSAGE_ROUTED0(DragMsg_TargetDragLeave)
@@ -44,7 +44,7 @@ IPC_MESSAGE_ROUTED4(DragMsg_SourceEndedOrMoved,
gfx::Point /* client_pt */,
gfx::Point /* screen_pt */,
bool /* ended */,
- WebKit::WebDragOperation /* drag_operation */)
+ blink::WebDragOperation /* drag_operation */)
// Notifies the renderer that the system DoDragDrop call has ended.
IPC_MESSAGE_ROUTED0(DragMsg_SourceSystemDragEnded)
@@ -57,7 +57,7 @@ IPC_MESSAGE_ROUTED0(DragMsg_SourceSystemDragEnded)
// drag session at the OS level.
IPC_MESSAGE_ROUTED5(DragHostMsg_StartDragging,
content::DropData /* drop_data */,
- WebKit::WebDragOperationsMask /* ops_allowed */,
+ blink::WebDragOperationsMask /* ops_allowed */,
SkBitmap /* image */,
gfx::Vector2d /* image_offset */,
content::DragEventSourceInfo /* event_info */)
@@ -65,7 +65,7 @@ IPC_MESSAGE_ROUTED5(DragHostMsg_StartDragging,
// The page wants to update the mouse cursor during a drag & drop operation.
// |is_drop_target| is true if the mouse is over a valid drop target.
IPC_MESSAGE_ROUTED1(DragHostMsg_UpdateDragCursor,
- WebKit::WebDragOperation /* drag_operation */)
+ blink::WebDragOperation /* drag_operation */)
// Notifies the host that the renderer finished a drop operation.
IPC_MESSAGE_ROUTED0(DragHostMsg_TargetDrop_ACK)
« no previous file with comments | « content/common/dom_storage/dom_storage_messages.h ('k') | content/common/drag_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698