OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "views/drag_utils.h" |
| 6 |
| 7 #include "app/gfx/canvas.h" |
| 8 #include "base/logging.h" |
| 9 #include "app/os_exchange_data.h" |
| 10 |
| 11 namespace drag_utils { |
| 12 |
| 13 void SetDragImageOnDataObject(const gfx::Canvas& canvas, |
| 14 int width, |
| 15 int height, |
| 16 int cursor_x_offset, |
| 17 int cursor_y_offset, |
| 18 OSExchangeData* data_object) { |
| 19 NOTIMPLEMENTED(); |
| 20 } |
| 21 |
| 22 } // namespace drag_utils |
OLD | NEW |