Home | History | Annotate | Download | only in dbus
      1 // Copyright 2013 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/fake_shill_device_client.h"
      6 
      7 namespace chromeos {
      8 
      9 FakeShillDeviceClient::FakeShillDeviceClient() {
     10 }
     11 
     12 FakeShillDeviceClient::~FakeShillDeviceClient() {
     13 }
     14 
     15 void FakeShillDeviceClient::AddPropertyChangedObserver(
     16     const dbus::ObjectPath& device_path,
     17     ShillPropertyChangedObserver* observer) {
     18 }
     19 
     20 void FakeShillDeviceClient::RemovePropertyChangedObserver(
     21     const dbus::ObjectPath& device_path,
     22     ShillPropertyChangedObserver* observer) {
     23 }
     24 
     25 void FakeShillDeviceClient::GetProperties(
     26     const dbus::ObjectPath& device_path,
     27     const DictionaryValueCallback& callback) {
     28 }
     29 
     30 void FakeShillDeviceClient::ProposeScan(
     31     const dbus::ObjectPath& device_path,
     32     const VoidDBusMethodCallback& callback) {
     33 }
     34 
     35 void FakeShillDeviceClient::SetProperty(const dbus::ObjectPath& device_path,
     36                                         const std::string& name,
     37                                         const base::Value& value,
     38                                         const base::Closure& callback,
     39                                         const ErrorCallback& error_callback) {
     40 }
     41 
     42 void FakeShillDeviceClient::ClearProperty(
     43     const dbus::ObjectPath& device_path,
     44     const std::string& name,
     45     const VoidDBusMethodCallback& callback) {
     46 }
     47 
     48 void FakeShillDeviceClient::AddIPConfig(
     49     const dbus::ObjectPath& device_path,
     50     const std::string& method,
     51     const ObjectPathDBusMethodCallback& callback) {
     52 }
     53 
     54 void FakeShillDeviceClient::RequirePin(const dbus::ObjectPath& device_path,
     55                                        const std::string& pin,
     56                                        bool require,
     57                                        const base::Closure& callback,
     58                                        const ErrorCallback& error_callback) {
     59 }
     60 
     61 void FakeShillDeviceClient::EnterPin(const dbus::ObjectPath& device_path,
     62                                      const std::string& pin,
     63                                      const base::Closure& callback,
     64                                      const ErrorCallback& error_callback) {
     65 }
     66 
     67 void FakeShillDeviceClient::UnblockPin(const dbus::ObjectPath& device_path,
     68                                        const std::string& puk,
     69                                        const std::string& pin,
     70                                        const base::Closure& callback,
     71                                        const ErrorCallback& error_callback) {
     72 }
     73 
     74 void FakeShillDeviceClient::ChangePin(const dbus::ObjectPath& device_path,
     75                                       const std::string& old_pin,
     76                                       const std::string& new_pin,
     77                                       const base::Closure& callback,
     78                                       const ErrorCallback& error_callback) {
     79 }
     80 
     81 void FakeShillDeviceClient::Register(const dbus::ObjectPath& device_path,
     82                                      const std::string& network_id,
     83                                      const base::Closure& callback,
     84                                      const ErrorCallback& error_callback) {
     85 }
     86 
     87 void FakeShillDeviceClient::SetCarrier(const dbus::ObjectPath& device_path,
     88                                        const std::string& carrier,
     89                                        const base::Closure& callback,
     90                                        const ErrorCallback& error_callback) {
     91 }
     92 
     93 void FakeShillDeviceClient::Reset(const dbus::ObjectPath& device_path,
     94                                   const base::Closure& callback,
     95                                   const ErrorCallback& error_callback) {
     96 }
     97 
     98 FakeShillDeviceClient::TestInterface*
     99 FakeShillDeviceClient::GetTestInterface() {
    100   return NULL;
    101 }
    102 
    103 }  // namespace chromeos
    104