#ifndef ASH_SHELF_DRAG_WINDOW_FROM_SHELF_CONTROLLER_TEST_API_H_
#define ASH_SHELF_DRAG_WINDOW_FROM_SHELF_CONTROLLER_TEST_API_H_
#include "ash/ash_export.h"
namespace ui {
class Layer;
}
namespace ash {
class DragWindowFromShelfController;
class ASH_EXPORT DragWindowFromShelfControllerTestApi {
public:
DragWindowFromShelfControllerTestApi();
DragWindowFromShelfControllerTestApi(
const DragWindowFromShelfControllerTestApi&) = delete;
DragWindowFromShelfControllerTestApi& operator=(
const DragWindowFromShelfControllerTestApi&) = delete;
~DragWindowFromShelfControllerTestApi();
void WaitUntilOverviewIsShown(
DragWindowFromShelfController* window_drag_controller);
ui::Layer* GetOtherWindowCopyLayer(
DragWindowFromShelfController* window_drag_controller);
};
}
#endif