1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/events/test/platform_event_source_test_api.h"
7 #include "ui/events/platform/platform_event_source.h"
12 PlatformEventSourceTestAPI::PlatformEventSourceTestAPI(
13 PlatformEventSource
* event_source
)
14 : event_source_(event_source
) {}
16 PlatformEventSourceTestAPI::~PlatformEventSourceTestAPI() {}
18 void PlatformEventSourceTestAPI::Dispatch(PlatformEvent platform_event
) {
19 event_source_
->DispatchEvent(platform_event
);