chromium/third_party/blink/renderer/core/frame/platform_event_dispatcher.cc

// Copyright 2014 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/frame/platform_event_dispatcher.h"

#include "base/auto_reset.h"
#include "third_party/blink/renderer/core/frame/platform_event_controller.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_vector.h"

namespace blink {

PlatformEventDispatcher::PlatformEventDispatcher()
    :{}

void PlatformEventDispatcher::AddController(PlatformEventController* controller,
                                            LocalDOMWindow* window) {}

void PlatformEventDispatcher::RemoveController(
    PlatformEventController* controller) {}

void PlatformEventDispatcher::NotifyControllers() {}

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

}  // namespace blink