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

Unified Diff: views/widget/root_view_win.cc

Issue 3822007: Move BaseDropTarget and BaseDragSource from base to app/win. Remove the "Base... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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 | « views/widget/drop_target_win.cc ('k') | webkit/tools/test_shell/drag_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/widget/root_view_win.cc
===================================================================
--- views/widget/root_view_win.cc (revision 62888)
+++ views/widget/root_view_win.cc (working copy)
@@ -7,7 +7,7 @@
#include "app/drag_drop_types.h"
#include "app/os_exchange_data.h"
#include "app/os_exchange_data_provider_win.h"
-#include "base/base_drag_source.h"
+#include "app/win/drag_source.h"
#include "gfx/canvas_skia.h"
namespace views {
@@ -38,7 +38,7 @@
int operation) {
// NOTE: view may be null.
drag_view_ = view;
- scoped_refptr<BaseDragSource> drag_source(new BaseDragSource);
+ scoped_refptr<app::win::DragSource> drag_source(new app::win::DragSource);
DWORD effects;
DoDragDrop(OSExchangeDataProviderWin::GetIDataObject(data), drag_source,
DragDropTypes::DragOperationToDropEffect(operation), &effects);
« no previous file with comments | « views/widget/drop_target_win.cc ('k') | webkit/tools/test_shell/drag_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698