OLD | NEW |
| (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/input_method_context_factory_ozone.h" | |
6 #include "ui/ozone/ime/fake_input_method_context_ozone.h" | |
7 | |
8 namespace ui { | |
9 | |
10 InputMethodContextFactoryOzone::InputMethodContextFactoryOzone() { | |
11 } | |
12 | |
13 InputMethodContextFactoryOzone::~InputMethodContextFactoryOzone() { | |
14 } | |
15 | |
16 scoped_ptr<LinuxInputMethodContext> | |
17 InputMethodContextFactoryOzone::CreateInputMethodContext( | |
18 LinuxInputMethodContextDelegate* /*delegate*/) const { | |
19 return scoped_ptr<LinuxInputMethodContext>(new FakeInputMethodContextOzone()); | |
20 } | |
21 | |
22 } // namespace ui | |
OLD | NEW |