| Index: chrome/browser/ui/input_method/input_method_engine.cc
|
| diff --git a/chrome/browser/ui/input_method/input_method_engine.cc b/chrome/browser/ui/input_method/input_method_engine.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a03580c9e03f21aaf2031c240011098ed4d96ef6
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/input_method/input_method_engine.cc
|
| @@ -0,0 +1,28 @@
|
| +// 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/input_method/input_method_engine.h"
|
| +
|
| +namespace input_method {
|
| +
|
| +InputMethodEngine::InputMethodEngine() {}
|
| +
|
| +InputMethodEngine::~InputMethodEngine() {}
|
| +
|
| +bool InputMethodEngine::SendKeyEvents(
|
| + int context_id,
|
| + const std::vector<KeyboardEvent>& events) {
|
| + // TODO(azurewei) Implement SendKeyEvents funciton
|
| + return false;
|
| +}
|
| +
|
| +bool InputMethodEngine::IsActive() const {
|
| + return true;
|
| +}
|
| +
|
| +std::string InputMethodEngine::GetExtensionId() const {
|
| + return extension_id_;
|
| +}
|
| +
|
| +} // namespace input_method
|
|
|