chromium/third_party/blink/renderer/core/html/forms/form_data_event.cc

// Copyright 2018 The Chromium Authors
// 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/html/forms/form_data_event.h"

#include "third_party/blink/renderer/bindings/core/v8/v8_form_data_event_init.h"
#include "third_party/blink/renderer/core/event_interface_names.h"
#include "third_party/blink/renderer/core/event_type_names.h"
#include "third_party/blink/renderer/core/html/forms/form_data.h"

namespace blink {

FormDataEvent::FormDataEvent(FormData& form_data)
    :{}

FormDataEvent::FormDataEvent(const AtomicString& type,
                             const FormDataEventInit* event_init)
    :{}

FormDataEvent* FormDataEvent::Create(FormData& form_data) {}

FormDataEvent* FormDataEvent::Create(const AtomicString& type,
                                     const FormDataEventInit* event_init) {}

void FormDataEvent::Trace(Visitor* visitor) const {}

const AtomicString& FormDataEvent::InterfaceName() const {}

}  // namespace blink