| Index: chrome/browser/ui/views/ime_driver/simple_input_method.cc
|
| diff --git a/chrome/browser/ui/views/ime_driver/simple_input_method.cc b/chrome/browser/ui/views/ime_driver/simple_input_method.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e040d2c86562fffd0cd88456f5e9b46d86a1b4e2
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/views/ime_driver/simple_input_method.cc
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2016 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.
|
| +
|
| +#include "chrome/browser/ui/views/ime_driver/simple_input_method.h"
|
| +
|
| +SimpleInputMethod::SimpleInputMethod() {}
|
| +
|
| +SimpleInputMethod::~SimpleInputMethod() {}
|
| +
|
| +void SimpleInputMethod::OnTextInputModeChanged(
|
| + ui::mojom::TextInputMode text_input_mode) {}
|
| +
|
| +void SimpleInputMethod::OnTextInputTypeChanged(
|
| + ui::mojom::TextInputType text_input_type) {}
|
| +
|
| +void SimpleInputMethod::OnCaretBoundsChanged(const gfx::Rect& caret_bounds) {}
|
| +
|
| +void SimpleInputMethod::ProcessKeyEvent(
|
| + std::unique_ptr<ui::Event> key_event,
|
| + const ProcessKeyEventCallback& callback) {
|
| + callback.Run(false);
|
| +}
|
| +
|
| +void SimpleInputMethod::CancelComposition() {}
|
|
|