// 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_WM_CORE_DEFAULT_SCREEN_POSITION_CLIENT_H_ #define UI_WM_CORE_DEFAULT_SCREEN_POSITION_CLIENT_H_ #include "base/component_export.h" #include "base/memory/raw_ptr.h" #include "ui/aura/client/screen_position_client.h" namespace wm { // Client that always offsets by the toplevel root window of the passed in // aura::Window. class COMPONENT_EXPORT(UI_WM) DefaultScreenPositionClient : public aura::client::ScreenPositionClient { … }; } // namespace wm #endif // UI_WM_CORE_DEFAULT_SCREEN_POSITION_CLIENT_H_