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

Unified Diff: ash/drag_drop/drag_drop_controller_unittest.cc

Issue 10855159: Support Drag and Drop across displays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable DragDropTrackerTest on Win Created 8 years, 4 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
Index: ash/drag_drop/drag_drop_controller_unittest.cc
diff --git a/ash/drag_drop/drag_drop_controller_unittest.cc b/ash/drag_drop/drag_drop_controller_unittest.cc
index ca6e368ef98e76a9bb27f397b0ad4303658871bf..7740186e127763ba315ad3ad0e40588893d998fa 100644
--- a/ash/drag_drop/drag_drop_controller_unittest.cc
+++ b/ash/drag_drop/drag_drop_controller_unittest.cc
@@ -127,11 +127,13 @@ class TestDragDropController : public internal::DragDropController {
private:
int StartDragAndDrop(const ui::OSExchangeData& data,
+ aura::RootWindow* root_window,
const gfx::Point& location,
int operation) OVERRIDE {
drag_start_received_ = true;
data.GetString(&drag_string_);
- return DragDropController::StartDragAndDrop(data, location, operation);
+ return DragDropController::StartDragAndDrop(
+ data, root_window, location, operation);
}
void DragUpdate(aura::Window* target,

Powered by Google App Engine
This is Rietveld 408576698