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

Side by Side Diff: ui/base/dragdrop/drag_utils.cc

Issue 1964283002: MacViews: Implemented Drag & Drop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/base/dragdrop/drag_utils.h" 5 #include "ui/base/dragdrop/drag_utils.h"
6 6
7 #include "base/files/file_util.h" 7 #include "base/files/file_util.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 SetDragImageOnDataObject(image, cursor_offset, data_object); 96 SetDragImageOnDataObject(image, cursor_offset, data_object);
97 } 97 }
98 98
99 void SetDragImageOnDataObject(const gfx::Canvas& canvas, 99 void SetDragImageOnDataObject(const gfx::Canvas& canvas,
100 const gfx::Vector2d& cursor_offset, 100 const gfx::Vector2d& cursor_offset,
101 ui::OSExchangeData* data_object) { 101 ui::OSExchangeData* data_object) {
102 gfx::ImageSkia image = gfx::ImageSkia(canvas.ExtractImageRep()); 102 gfx::ImageSkia image = gfx::ImageSkia(canvas.ExtractImageRep());
103 SetDragImageOnDataObject(image, cursor_offset, data_object); 103 SetDragImageOnDataObject(image, cursor_offset, data_object);
104 } 104 }
105 105
106 #if !defined(OS_WIN)
107 void SetDragImageOnDataObject(const gfx::ImageSkia& image_skia,
108 const gfx::Vector2d& cursor_offset,
109 ui::OSExchangeData* data_object) {
110 data_object->provider().SetDragImage(image_skia, cursor_offset);
111 }
112 #endif
113
106 } // namespace drag_utils 114 } // namespace drag_utils
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698