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/ibus_controller.h"
      6 
      7 #include "chrome/browser/chromeos/input_method/ibus_controller_impl.h"
      8 
      9 namespace chromeos {
     10 namespace input_method {
     11 
     12 IBusController::~IBusController() {
     13 }
     14 
     15 // static
     16 IBusController* IBusController::Create() {
     17   return new IBusControllerImpl;
     18 }
     19 
     20 }  // namespace input_method
     21 }  // namespace chromeos
     22