[go: nahoru, domu]

blob: e114e432ebb7568f038b45e99f86e8c28ba633a9 [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ASH_INPUT_METHOD_MOCK_INPUT_METHOD_ENGINE_H_
#define CHROME_BROWSER_ASH_INPUT_METHOD_MOCK_INPUT_METHOD_ENGINE_H_
#include <stddef.h>
#include <stdint.h>
#include <string>
#include <vector>
#include "ui/base/ime/ash/input_method_descriptor.h"
#include "ui/base/ime/ash/text_input_method.h"
namespace ui {
class KeyEvent;
}
namespace ash {
namespace ime {
struct AssistiveWindow;
} // namespace ime
namespace input_method {
class MockInputMethodEngine : public TextInputMethod {
public:
MockInputMethodEngine();
~MockInputMethodEngine() override;
// TextInputMethod overrides.
void Focus(const InputContext& input_context) override;
void Blur() override;
void Enable(const std::string& component_id) override;
void Disable() override;
void Reset() override;
void ProcessKeyEvent(const ui::KeyEvent& key_event,
KeyEventDoneCallback callback) override;
void SetSurroundingText(const std::u16string& text,
gfx::Range selection_range,
uint32_t offset_pos) override;
void SetCaretBounds(const gfx::Rect& caret_bounds) override;
ui::VirtualKeyboardController* GetVirtualKeyboardController() const override;
void PropertyActivate(const std::string& property_name) override;
void CandidateClicked(uint32_t index) override;
void AssistiveWindowChanged(const ash::ime::AssistiveWindow& window) override;
void SetMirroringEnabled(bool mirroring_enabled);
void SetCastingEnabled(bool casting_enabled);
bool IsReadyForTesting() override;
const std::string& GetActiveComponentId() const;
std::string last_activated_property() const {
return last_activated_property_;
}
private:
std::string active_component_id_;
std::string last_activated_property_;
};
} // namespace input_method
} // namespace ash
#endif // CHROME_BROWSER_ASH_INPUT_METHOD_MOCK_INPUT_METHOD_ENGINE_H_