OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 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_manager_client.h" |
| 6 |
| 7 namespace chromeos { |
| 8 |
| 9 FakeShillManagerClient::FakeShillManagerClient() { |
| 10 } |
| 11 |
| 12 FakeShillManagerClient::~FakeShillManagerClient() { |
| 13 } |
| 14 |
| 15 void FakeShillManagerClient::RequestScan(const std::string& type, |
| 16 const base::Closure& callback, |
| 17 const ErrorCallback& error_callback) { |
| 18 } |
| 19 |
| 20 ShillManagerClient::TestInterface* FakeShillManagerClient::GetTestInterface() { |
| 21 return NULL; |
| 22 } |
| 23 |
| 24 void FakeShillManagerClient::GetNetworksForGeolocation( |
| 25 const DictionaryValueCallback& callback) { |
| 26 } |
| 27 |
| 28 void FakeShillManagerClient::ConnectToBestServices( |
| 29 const base::Closure& callback, |
| 30 const ErrorCallback& error_callback) { |
| 31 } |
| 32 |
| 33 void FakeShillManagerClient::RemovePropertyChangedObserver( |
| 34 ShillPropertyChangedObserver* observer) { |
| 35 } |
| 36 |
| 37 void FakeShillManagerClient::VerifyAndEncryptData( |
| 38 const std::string& certificate, |
| 39 const std::string& public_key, |
| 40 const std::string& nonce, |
| 41 const std::string& signed_data, |
| 42 const std::string& device_serial, |
| 43 const std::string& data, |
| 44 const StringCallback& callback, |
| 45 const ErrorCallback& error_callback) { |
| 46 } |
| 47 |
| 48 void FakeShillManagerClient::GetService(const base::DictionaryValue& properties, |
| 49 const ObjectPathCallback& callback, |
| 50 const ErrorCallback& error_callback) { |
| 51 } |
| 52 |
| 53 base::DictionaryValue* FakeShillManagerClient::CallGetPropertiesAndBlock() { |
| 54 return NULL; |
| 55 } |
| 56 |
| 57 void FakeShillManagerClient::AddPropertyChangedObserver( |
| 58 ShillPropertyChangedObserver* observer) { |
| 59 } |
| 60 |
| 61 void FakeShillManagerClient::DisableTechnology( |
| 62 const std::string& type, |
| 63 const base::Closure& callback, |
| 64 const ErrorCallback& error_callback) { |
| 65 } |
| 66 |
| 67 void FakeShillManagerClient::SetProperty(const std::string& name, |
| 68 const base::Value& value, |
| 69 const base::Closure& callback, |
| 70 const ErrorCallback& error_callback) { |
| 71 } |
| 72 |
| 73 void FakeShillManagerClient::GetProperties( |
| 74 const DictionaryValueCallback& callback) { |
| 75 } |
| 76 |
| 77 void FakeShillManagerClient::VerifyAndEncryptCredentials( |
| 78 const std::string& certificate, |
| 79 const std::string& public_key, |
| 80 const std::string& nonce, |
| 81 const std::string& signed_data, |
| 82 const std::string& device_serial, |
| 83 const std::string& service_path, |
| 84 const StringCallback& callback, |
| 85 const ErrorCallback& error_callback) { |
| 86 } |
| 87 |
| 88 void FakeShillManagerClient::EnableTechnology( |
| 89 const std::string& type, |
| 90 const base::Closure& callback, |
| 91 const ErrorCallback& error_callback) { |
| 92 } |
| 93 |
| 94 void FakeShillManagerClient::ConfigureService( |
| 95 const base::DictionaryValue& properties, |
| 96 const ObjectPathCallback& callback, |
| 97 const ErrorCallback& error_callback) { |
| 98 } |
| 99 |
| 100 void FakeShillManagerClient::VerifyDestination( |
| 101 const std::string& certificate, |
| 102 const std::string& public_key, |
| 103 const std::string& nonce, |
| 104 const std::string& signed_data, |
| 105 const std::string& device_serial, |
| 106 const BooleanCallback& callback, |
| 107 const ErrorCallback& error_callback) { |
| 108 } |
| 109 |
| 110 void FakeShillManagerClient::ConfigureServiceForProfile( |
| 111 const dbus::ObjectPath& profile_path, |
| 112 const base::DictionaryValue& properties, |
| 113 const ObjectPathCallback& callback, |
| 114 const ErrorCallback& error_callback) { |
| 115 } |
| 116 |
| 117 } // namespace chromeos |
OLD | NEW |