candidate_window_controller.cc revision 2a99a7e74a7f215066514fe81d2bfa6639d9eddd
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
3// found in the LICENSE file.
4
5#include "chrome/browser/chromeos/input_method/candidate_window_controller.h"
6
7#include "chrome/browser/chromeos/input_method/candidate_window_controller_impl.h"
8#include "chrome/browser/chromeos/input_method/ibus_controller.h"
9
10namespace chromeos {
11namespace input_method {
12
13// static
14CandidateWindowController*
15CandidateWindowController::CreateCandidateWindowController() {
16  return new CandidateWindowControllerImpl;
17}
18
19}  // namespace input_method
20}  // namespace chromeos
21