// 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_BASE_X_TEST_X11_PROPERTY_CHANGE_WAITER_H_ #define UI_BASE_X_TEST_X11_PROPERTY_CHANGE_WAITER_H_ #include <stdint.h> #include "base/functional/callback.h" #include "ui/events/platform_event.h" #include "ui/gfx/x/connection.h" #include "ui/gfx/x/event.h" #include "ui/gfx/x/window_event_manager.h" namespace ui { // Blocks till the value of |property| on |window| changes. class X11PropertyChangeWaiter : public x11::EventObserver { … }; } // namespace ui #endif // UI_BASE_X_TEST_X11_PROPERTY_CHANGE_WAITER_H_