OLD | NEW |
---|---|
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 Loading... | |
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 |
OLD | NEW |