summaryrefslogtreecommitdiffstats
path: root/chromeos/ime/ime_keyboard_ozone.cc
blob: 95107988c9b0c2dba80306dfe35115659d4c5f2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/ime/fake_ime_keyboard.h"
#include "chromeos/ime/ime_keyboard.h"

namespace chromeos {
namespace input_method {

// static
ImeKeyboard* ImeKeyboard::Create() {
  return new FakeImeKeyboard;
}

}  // namespace input_method
}  // namespace chromeos