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.
5 #include "chromeos/dbus/fake_shill_manager_client.h"
9 FakeShillManagerClient::FakeShillManagerClient() {
12 FakeShillManagerClient::~FakeShillManagerClient() {
15 void FakeShillManagerClient::Init(dbus::Bus
* bus
) {
18 void FakeShillManagerClient::RequestScan(const std::string
& type
,
19 const base::Closure
& callback
,
20 const ErrorCallback
& error_callback
) {
23 ShillManagerClient::TestInterface
* FakeShillManagerClient::GetTestInterface() {
27 void FakeShillManagerClient::GetNetworksForGeolocation(
28 const DictionaryValueCallback
& callback
) {
31 void FakeShillManagerClient::ConnectToBestServices(
32 const base::Closure
& callback
,
33 const ErrorCallback
& error_callback
) {
36 void FakeShillManagerClient::RemovePropertyChangedObserver(
37 ShillPropertyChangedObserver
* observer
) {
40 void FakeShillManagerClient::VerifyAndEncryptData(
41 const VerificationProperties
& properties
,
42 const std::string
& data
,
43 const StringCallback
& callback
,
44 const ErrorCallback
& error_callback
) {
47 void FakeShillManagerClient::GetService(const base::DictionaryValue
& properties
,
48 const ObjectPathCallback
& callback
,
49 const ErrorCallback
& error_callback
) {
52 void FakeShillManagerClient::AddPropertyChangedObserver(
53 ShillPropertyChangedObserver
* observer
) {
56 void FakeShillManagerClient::DisableTechnology(
57 const std::string
& type
,
58 const base::Closure
& callback
,
59 const ErrorCallback
& error_callback
) {
62 void FakeShillManagerClient::SetProperty(const std::string
& name
,
63 const base::Value
& value
,
64 const base::Closure
& callback
,
65 const ErrorCallback
& error_callback
) {
68 void FakeShillManagerClient::GetProperties(
69 const DictionaryValueCallback
& callback
) {
72 void FakeShillManagerClient::VerifyAndEncryptCredentials(
73 const VerificationProperties
& properties
,
74 const std::string
& service_path
,
75 const StringCallback
& callback
,
76 const ErrorCallback
& error_callback
) {
79 void FakeShillManagerClient::EnableTechnology(
80 const std::string
& type
,
81 const base::Closure
& callback
,
82 const ErrorCallback
& error_callback
) {
85 void FakeShillManagerClient::ConfigureService(
86 const base::DictionaryValue
& properties
,
87 const ObjectPathCallback
& callback
,
88 const ErrorCallback
& error_callback
) {
91 void FakeShillManagerClient::VerifyDestination(
92 const VerificationProperties
& properties
,
93 const BooleanCallback
& callback
,
94 const ErrorCallback
& error_callback
) {
97 void FakeShillManagerClient::ConfigureServiceForProfile(
98 const dbus::ObjectPath
& profile_path
,
99 const base::DictionaryValue
& properties
,
100 const ObjectPathCallback
& callback
,
101 const ErrorCallback
& error_callback
) {
104 } // namespace chromeos