blob: b2788ccd76ed16ccd6a22b0af4bb80a181b8834e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright 2014 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 ASH_VIRTUAL_KEYBOARD_CONTROLLER_H_
#define ASH_VIRTUAL_KEYBOARD_CONTROLLER_H_
#include "ash/ash_export.h"
#include "ash/shell_observer.h"
namespace ash {
// This class observes enter/leaving maximized mode for virtual keyboard.
class ASH_EXPORT VirtualKeyboardController : public ShellObserver {
public:
VirtualKeyboardController();
~VirtualKeyboardController() override;
// ShellObserver:
void OnMaximizeModeStarted() override;
void OnMaximizeModeEnded() override;
private:
DISALLOW_COPY_AND_ASSIGN(VirtualKeyboardController);
};
} // namespace ash
#endif // ASH_VIRTUAL_KEYBOARD_CONTROLLER_H_
|