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

Unified Diff: ui/base/dragdrop/drag_utils_aura.cc

Issue 1964283002: MacViews: Implemented Drag & Drop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix for dcheng Created 4 years, 6 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: ui/base/dragdrop/drag_utils_aura.cc
diff --git a/ui/base/dragdrop/drag_utils_aura.cc b/ui/base/dragdrop/drag_utils_aura.cc
deleted file mode 100644
index 097978c1b64d3f13e547d1d2ae420e0da0f15fe8..0000000000000000000000000000000000000000
--- a/ui/base/dragdrop/drag_utils_aura.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ui/base/dragdrop/drag_utils.h"
-
-#include "base/logging.h"
-#include "ui/base/dragdrop/os_exchange_data.h"
-#include "ui/gfx/canvas.h"
-#include "ui/gfx/geometry/size.h"
-#include "ui/gfx/geometry/vector2d.h"
-#include "ui/gfx/image/image_skia.h"
-
-namespace drag_utils {
-
-void SetDragImageOnDataObject(const gfx::ImageSkia& image,
- const gfx::Vector2d& cursor_offset,
- ui::OSExchangeData* data_object) {
-
- data_object->provider().SetDragImage(image, cursor_offset);
-}
-
-} // namespace drag_utils

Powered by Google App Engine
This is Rietveld 408576698