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 3 // found in the LICENSE file. 4 5 #include "chromeos/ime/fake_ime_keyboard.h" 6 #include "chromeos/ime/ime_keyboard.h" 7 8 namespace chromeos { 9 namespace input_method { 10 11 // static 12 ImeKeyboard* ImeKeyboard::Create() { 13 return new FakeImeKeyboard; 14 } 15 16 } // namespace input_method 17 } // namespace chromeos 18