| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/ui/input_method/input_method_engine.h" |
| 6 |
| 7 namespace input_method { |
| 8 |
| 9 InputMethodEngine::InputMethodEngine() {} |
| 10 |
| 11 InputMethodEngine::~InputMethodEngine() {} |
| 12 |
| 13 bool InputMethodEngine::SendKeyEvents( |
| 14 int context_id, |
| 15 const std::vector<KeyboardEvent>& events) { |
| 16 // TODO(azurewei) Implement SendKeyEvents funciton |
| 17 return false; |
| 18 } |
| 19 |
| 20 bool InputMethodEngine::IsActive() const { |
| 21 return true; |
| 22 } |
| 23 |
| 24 std::string InputMethodEngine::GetExtensionId() const { |
| 25 return extension_id_; |
| 26 } |
| 27 |
| 28 } // namespace input_method |
| OLD | NEW |