blob: 6d592f631d21f561cc84fbc47e3e1515f4073061 [file] [log] [blame]
// Copyright 2015 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 "third_party/blink/renderer/core/events/drag_event.h"
#include "third_party/blink/renderer/core/clipboard/data_transfer.h"
#include "third_party/blink/renderer/core/dom/element.h"
#include "third_party/blink/renderer/core/dom/events/event_dispatcher.h"
#include "third_party/blink/renderer/core/dom/events/event_path.h"
namespace blink {
DragEvent::DragEvent() : data_transfer_(nullptr) {}
DragEvent::DragEvent(const AtomicString& type,
const DragEventInit& initializer,
TimeTicks platform_time_stamp,
SyntheticEventType synthetic_event_type)
: MouseEvent(type, initializer, platform_time_stamp, synthetic_event_type),
data_transfer_(initializer.getDataTransfer()) {}
bool DragEvent::IsDragEvent() const {
return true;
}
bool DragEvent::IsMouseEvent() const {
return false;
}
void DragEvent::Trace(blink::Visitor* visitor) {
visitor->Trace(data_transfer_);
MouseEvent::Trace(visitor);
}
DispatchEventResult DragEvent::DispatchEvent(EventDispatcher& dispatcher) {
GetEventPath().AdjustForRelatedTarget(dispatcher.GetNode(), relatedTarget());
return dispatcher.Dispatch();
}
} // namespace blink