// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef HEADLESS_LIB_BROWSER_HEADLESS_FOCUS_CLIENT_H_ #define HEADLESS_LIB_BROWSER_HEADLESS_FOCUS_CLIENT_H_ #include "base/memory/raw_ptr.h" #include "base/observer_list.h" #include "base/scoped_observation.h" #include "ui/aura/client/focus_client.h" #include "ui/aura/window_observer.h" namespace headless { class HeadlessFocusClient : public aura::client::FocusClient, public aura::WindowObserver { … }; } // namespace headless #endif // HEADLESS_LIB_BROWSER_HEADLESS_FOCUS_CLIENT_H_