blob: 8a40b85aa9a0806618b8d29b72f5bce9bae0b575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) 2009 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 "views/drag_utils.h"
#include "app/gfx/canvas.h"
#include "base/logging.h"
#include "app/os_exchange_data.h"
namespace drag_utils {
void SetDragImageOnDataObject(const gfx::Canvas& canvas,
int width,
int height,
int cursor_x_offset,
int cursor_y_offset,
OSExchangeData* data_object) {
NOTIMPLEMENTED();
}
} // namespace drag_utils
|