#ifndef ASH_WM_FLOAT_FLOAT_TEST_API_H_
#define ASH_WM_FLOAT_FLOAT_TEST_API_H_
#include "ash/wm/float/float_controller.h"
namespace ash {
class FloatTestApi {
public:
class ScopedTuckEducationDisabler {
public:
ScopedTuckEducationDisabler();
ScopedTuckEducationDisabler(const ScopedTuckEducationDisabler&) = delete;
ScopedTuckEducationDisabler& operator=(const ScopedTuckEducationDisabler&) =
delete;
~ScopedTuckEducationDisabler();
};
FloatTestApi() = delete;
static int GetFloatedWindowCounter();
static int GetFloatedWindowMoveToAnotherDeskCounter();
static FloatController::MagnetismCorner GetMagnetismCornerForBounds(
const gfx::Rect& bounds_in_screen);
};
}
#endif