Home | History | Annotate | Download | only in input_method
      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 
     10 namespace chromeos {
     11 namespace input_method {
     12 
     13 // static
     14 CandidateWindowController*
     15 CandidateWindowController::CreateCandidateWindowController() {
     16   return new CandidateWindowControllerImpl;
     17 }
     18 
     19 }  // namespace input_method
     20 }  // namespace chromeos
     21