blob: d78ac45ffb0f3632ec4568e4ab01334bd371a36c [file] [log] [blame]
// 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.
#ifndef CONTENT_COMMON_DRAG_EVENT_SOURCE_INFO_H_
#define CONTENT_COMMON_DRAG_EVENT_SOURCE_INFO_H_
#include "content/common/content_export.h"
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/gfx/geometry/point.h"
namespace content {
// Information about the event that started a drag session.
struct CONTENT_EXPORT DragEventSourceInfo {
gfx::Point event_location;
ui::DragDropTypes::DragEventSource event_source;
};
} // namespace content
#endif // CONTENT_COMMON_DRAG_EVENT_SOURCE_INFO_H_