Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / chromeos / input_method / candidate_window_controller.cc
blobc94fc8c30130e0c395c091f581b767154613a2a3
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.
5 #include "chrome/browser/chromeos/input_method/candidate_window_controller.h"
7 #include "chrome/browser/chromeos/input_method/candidate_window_controller_impl.h"
9 namespace chromeos {
10 namespace input_method {
12 // static
13 CandidateWindowController*
14 CandidateWindowController::CreateCandidateWindowController() {
15 return new CandidateWindowControllerImpl;
18 } // namespace input_method
19 } // namespace chromeos