Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: chrome/browser/ui/input_method/input_method_engine.cc

Issue 1528483002: Add chrome.input.ime.activate and chrome.input.ime.deactivate API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/ui/input_method/input_method_engine.h ('k') | chrome/browser/ui/input_method/input_method_engine_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698