1 // Copyright 2014 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 #ifndef UI_EVENTS_TEST_PLATFORM_EVENT_WAITER_H_
6 #define UI_EVENTS_TEST_PLATFORM_EVENT_WAITER_H_
8 #include "base/callback.h"
9 #include "ui/events/platform/platform_event_observer.h"
13 class PlatformEventWaiter
: public PlatformEventObserver
{
15 typedef base::Callback
<bool(const PlatformEvent
&)> PlatformEventMatcher
;
17 static PlatformEventWaiter
* Create(const base::Closure
& success_callback
,
18 const PlatformEventMatcher
& event_matcher
);
21 PlatformEventWaiter(const base::Closure
& success_callback
,
22 const PlatformEventMatcher
& event_matcher
);
23 ~PlatformEventWaiter() override
;
25 // PlatformEventObserver:
26 void WillProcessEvent(const PlatformEvent
& event
) override
;
27 void DidProcessEvent(const PlatformEvent
& event
) override
;
29 base::Closure success_callback_
;
30 PlatformEventMatcher event_matcher_
;
32 DISALLOW_COPY_AND_ASSIGN(PlatformEventWaiter
);
37 #endif // UI_EVENTS_TEST_PLATFORM_EVENT_WAITER_H_