blob: 5895a5ad3ea36f808db1d229dce23bec5f8bf16f [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_EXO_TEST_TEST_CLIENT_CONTROLLED_STATE_DELEGATE_H_
#define COMPONENTS_EXO_TEST_TEST_CLIENT_CONTROLLED_STATE_DELEGATE_H_
#include "ash/wm/client_controlled_state.h"
namespace exo {
namespace test {
class TestClientControlledStateDelegate
: public ash::wm::ClientControlledState::Delegate {
public:
static void InstallFactory();
static void UninstallFactory();
TestClientControlledStateDelegate();
~TestClientControlledStateDelegate() override;
// Overridden from ash::wm::ClientControlledState::Delegate:
void HandleWindowStateRequest(ash::wm::WindowState* window_state,
ash::WindowStateType next_state) override;
void HandleBoundsRequest(ash::wm::WindowState* window_state,
ash::WindowStateType requested_state,
const gfx::Rect& bounds) override;
private:
DISALLOW_COPY_AND_ASSIGN(TestClientControlledStateDelegate);
};
} // namespace test
} // namespace exo
#endif // COMPONENTS_EXO_TEST_TEST_CLIENT_CONTROLLED_STATE_DELEGATE_H_