forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_ime_controller_client.h
53 lines (42 loc) · 1.75 KB
/
test_ime_controller_client.h
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright 2018 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_IME_TEST_IME_CONTROLLER_CLIENT_H_
#define ASH_IME_TEST_IME_CONTROLLER_CLIENT_H_
#include "ash/public/interfaces/ime_controller.mojom.h"
#include "base/macros.h"
#include "mojo/public/cpp/bindings/binding.h"
namespace ash {
class TestImeControllerClient : public mojom::ImeControllerClient {
public:
TestImeControllerClient();
~TestImeControllerClient() override;
mojom::ImeControllerClientPtr CreateInterfacePtr();
// mojom::ImeControllerClient:
void SwitchToNextIme() override;
void SwitchToLastUsedIme() override;
void SwitchImeById(const std::string& id, bool show_message) override;
void ActivateImeMenuItem(const std::string& key) override;
void SetCapsLockEnabled(bool enabled) override;
void OverrideKeyboardKeyset(chromeos::input_method::mojom::ImeKeyset keyset,
OverrideKeyboardKeysetCallback callback) override;
void UpdateMirroringState(bool enabled) override;
void UpdateCastingState(bool enabled) override;
void ShowModeIndicator() override;
int next_ime_count_ = 0;
int last_used_ime_count_ = 0;
int switch_ime_count_ = 0;
int set_caps_lock_count_ = 0;
std::string last_switch_ime_id_;
bool last_show_message_ = false;
chromeos::input_method::mojom::ImeKeyset last_keyset_ =
chromeos::input_method::mojom::ImeKeyset::kNone;
bool is_mirroring_ = false;
bool is_casting_ = false;
int show_mode_indicator_count_ = 0;
private:
mojo::Binding<mojom::ImeControllerClient> binding_;
DISALLOW_COPY_AND_ASSIGN(TestImeControllerClient);
};
} // namespace ash
#endif // ASH_IME_TEST_IME_CONTROLLER_CLIENT_H_