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

Side by Side Diff: ui/ozone/ime/fake_input_method_context_ozone.cc

Issue 100213003: Support for providing IMEContext with Ozone. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review fix: Sort files in alphabetical order Created 7 years 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 2013 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 "ui/ozone/ime/fake_input_method_context_ozone.h"
6
7 namespace ui {
8
9 FakeInputMethodContextOzone::FakeInputMethodContextOzone() {
10 }
11
12 FakeInputMethodContextOzone::~FakeInputMethodContextOzone() {
13 }
14
15 // Overriden from ui::LinuxInputMethodContext
rjkroege 2013/12/12 23:43:38 nit: this comment is unnecessary.
kalyank 2013/12/13 10:35:27 Done.
16
17 bool FakeInputMethodContextOzone::DispatchKeyEvent(
18 const ui::KeyEvent& /* key_event */) {
19 return false;
20 }
21
22 void FakeInputMethodContextOzone::Reset() {
23 }
24
25 base::i18n::TextDirection FakeInputMethodContextOzone::GetInputTextDirection()
26 const {
27 return base::i18n::UNKNOWN_DIRECTION;
28 }
29
30 void FakeInputMethodContextOzone::OnTextInputTypeChanged(
31 ui::TextInputType /* text_input_type */) {
32 }
33
34 void FakeInputMethodContextOzone::OnCaretBoundsChanged(
35 const gfx::Rect& /* caret_bounds */) {
36 }
37
38 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698