// 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. #ifndef UI_EVENTS_PLATFORM_PLATFORM_EVENT_SOURCE_H_ #define UI_EVENTS_PLATFORM_PLATFORM_EVENT_SOURCE_H_ #include <stdint.h> #include <memory> #include "base/auto_reset.h" #include "base/memory/raw_ptr_exclusion.h" #include "base/observer_list.h" #include "ui/events/events_export.h" #include "ui/events/platform_event.h" namespace ui { class PlatformEventDispatcher; class PlatformEventObserver; class ScopedEventDispatcher; // PlatformEventSource receives events from a source and dispatches the events // to the appropriate dispatchers. class EVENTS_EXPORT PlatformEventSource { … }; } // namespace ui #endif // UI_EVENTS_PLATFORM_PLATFORM_EVENT_SOURCE_H_