316e3291ac
BUG=none TEST=none Review URL: http://codereview.chromium.org/113954 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17080 0039d316-1c4b-4281-b951-d872f2087c98
23 linhas
666 B
C++
23 linhas
666 B
C++
// 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
|