Home | History | Annotate | Download | only in ibus
      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 "chromeos/dbus/ibus/mock_ibus_config_client.h"
      6 
      7 #include <vector>
      8 
      9 namespace chromeos {
     10 
     11 MockIBusConfigClient::MockIBusConfigClient() {
     12 }
     13 
     14 MockIBusConfigClient::~MockIBusConfigClient() {}
     15 
     16 void MockIBusConfigClient::InitializeAsync(const OnIBusConfigReady& onready) {
     17 }
     18 
     19 void MockIBusConfigClient::SetStringValue(const std::string& key,
     20                                           const std::string& section,
     21                                           const std::string& value,
     22                                           const ErrorCallback& error_callback) {
     23 }
     24 
     25 void MockIBusConfigClient::SetIntValue(const std::string& key,
     26                                        const std::string& section,
     27                                        int value,
     28                                        const ErrorCallback& error_callback) {
     29 }
     30 
     31 void MockIBusConfigClient::SetBoolValue(const std::string& key,
     32                                         const std::string& section,
     33                                         bool value,
     34                                         const ErrorCallback& error_callback) {
     35 }
     36 
     37 void MockIBusConfigClient::SetStringListValue(
     38     const std::string& key,
     39     const std::string& section,
     40     const std::vector<std::string>& value,
     41     const ErrorCallback& error_callback) {
     42 }
     43 
     44 }  // namespace chromeos
     45