OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ui/base/test/dummy_input_method.h" | 5 #include "ui/base/ime/dummy_input_method.h" |
6 | 6 |
7 namespace ui { | 7 namespace ui { |
8 namespace test { | |
9 | 8 |
10 DummyInputMethod::DummyInputMethod() { | 9 DummyInputMethod::DummyInputMethod() { |
11 } | 10 } |
12 | 11 |
13 DummyInputMethod::~DummyInputMethod() { | 12 DummyInputMethod::~DummyInputMethod() { |
14 } | 13 } |
15 | 14 |
16 void DummyInputMethod::SetDelegate(internal::InputMethodDelegate* delegate) { | 15 void DummyInputMethod::SetDelegate(internal::InputMethodDelegate* delegate) { |
17 } | 16 } |
18 | 17 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 bool DummyInputMethod::CanComposeInline() const { | 67 bool DummyInputMethod::CanComposeInline() const { |
69 return true; | 68 return true; |
70 } | 69 } |
71 | 70 |
72 void DummyInputMethod::AddObserver(InputMethodObserver* observer) { | 71 void DummyInputMethod::AddObserver(InputMethodObserver* observer) { |
73 } | 72 } |
74 | 73 |
75 void DummyInputMethod::RemoveObserver(InputMethodObserver* observer) { | 74 void DummyInputMethod::RemoveObserver(InputMethodObserver* observer) { |
76 } | 75 } |
77 | 76 |
78 } // namespace test | |
79 } // namespace ui | 77 } // namespace ui |
80 | 78 |
OLD | NEW |