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

Unified Diff: ui/views/mus/drop_target_mus.cc

Issue 2460663002: Moves OSExchangeDataProviderMus to aura/mus (Closed)
Patch Set: DEPS and daisy compile Created 4 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 | « ui/views/mus/drag_drop_client_mus.cc ('k') | ui/views/mus/os_exchange_data_provider_mus.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/drop_target_mus.cc
diff --git a/ui/views/mus/drop_target_mus.cc b/ui/views/mus/drop_target_mus.cc
index 2b2bfc1d9e058b744fa7f3400325ec6b02981b27..ca50cb327f0801dbd13f045571adce6d3c239e4d 100644
--- a/ui/views/mus/drop_target_mus.cc
+++ b/ui/views/mus/drop_target_mus.cc
@@ -11,11 +11,11 @@
#include "services/ui/public/interfaces/window_tree_constants.mojom.h"
#include "ui/aura/client/drag_drop_client.h"
+#include "ui/aura/mus/os_exchange_data_provider_mus.h"
#include "ui/aura/window.h"
#include "ui/aura/window_tree_host.h"
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/base/dragdrop/drop_target_event.h"
-#include "ui/views/mus/os_exchange_data_provider_mus.h"
#include "ui/wm/public/drag_drop_delegate.h"
namespace views {
@@ -87,7 +87,7 @@ void DropTargetMus::OnDragDropStart(
// We store the mime data here because we need to access it during each phase
// of the drag, but we also don't move the data cross-process multiple times.
os_exchange_data_ = base::MakeUnique<ui::OSExchangeData>(
- base::MakeUnique<OSExchangeDataProviderMus>(std::move(mime_data)));
+ base::MakeUnique<aura::OSExchangeDataProviderMus>(std::move(mime_data)));
}
uint32_t DropTargetMus::OnDragEnter(uint32_t key_state,
« no previous file with comments | « ui/views/mus/drag_drop_client_mus.cc ('k') | ui/views/mus/os_exchange_data_provider_mus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698