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

Side by Side Diff: ui/chromeos/ime/ime_keyboard_ozone.cc

Issue 727143002: Moves code from chromeos/ime to ui/base/ime/chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 6 years, 1 month 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chromeos/ime/ime_keyboard_ozone.h" 5 #include "ui/chromeos/ime/ime_keyboard_ozone.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 namespace input_method { 8 namespace input_method {
9 9
10 10
11 ImeKeyboardOzone::ImeKeyboardOzone() { 11 ImeKeyboardOzone::ImeKeyboardOzone() {
12 } 12 }
13 13
14 14
15 ImeKeyboardOzone::~ImeKeyboardOzone() { 15 ImeKeyboardOzone::~ImeKeyboardOzone() {
(...skipping 30 matching lines...) Expand all
46 46
47 bool ImeKeyboardOzone::SetAutoRepeatRate(const AutoRepeatRate& rate) { 47 bool ImeKeyboardOzone::SetAutoRepeatRate(const AutoRepeatRate& rate) {
48 return true; 48 return true;
49 } 49 }
50 50
51 bool ImeKeyboardOzone::SetAutoRepeatEnabled(bool enabled) { 51 bool ImeKeyboardOzone::SetAutoRepeatEnabled(bool enabled) {
52 return true; 52 return true;
53 } 53 }
54 54
55 // static 55 // static
56 ImeKeyboard* ImeKeyboard::Create() { return new ImeKeyboardOzone(); } 56 UI_CHROMEOS_EXPORT ImeKeyboard* ImeKeyboard::Create() {
Jun Mukai 2014/11/20 07:34:14 I don't think you have to specify _EXPORT macro in
Shu Chen 2014/11/20 08:34:38 Done.
57 return new ImeKeyboardOzone();
58 }
57 59
58 } // namespace input_method 60 } // namespace input_method
59 } // namespace chromeos 61 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698