OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_STUB_H_ | 5 #ifndef CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_STUB_H_ |
6 #define CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_STUB_H_ | 6 #define CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_STUB_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 const base::Closure& callback, | 43 const base::Closure& callback, |
44 const ErrorCallback& error_callback) OVERRIDE; | 44 const ErrorCallback& error_callback) OVERRIDE; |
45 virtual void DisableTechnology( | 45 virtual void DisableTechnology( |
46 const std::string& type, | 46 const std::string& type, |
47 const base::Closure& callback, | 47 const base::Closure& callback, |
48 const ErrorCallback& error_callback) OVERRIDE; | 48 const ErrorCallback& error_callback) OVERRIDE; |
49 virtual void ConfigureService( | 49 virtual void ConfigureService( |
50 const base::DictionaryValue& properties, | 50 const base::DictionaryValue& properties, |
51 const ObjectPathCallback& callback, | 51 const ObjectPathCallback& callback, |
52 const ErrorCallback& error_callback) OVERRIDE; | 52 const ErrorCallback& error_callback) OVERRIDE; |
| 53 virtual void ConfigureServiceForProfile( |
| 54 const dbus::ObjectPath& profile_path, |
| 55 const base::DictionaryValue& properties, |
| 56 const ObjectPathCallback& callback, |
| 57 const ErrorCallback& error_callback) OVERRIDE; |
53 virtual void GetService( | 58 virtual void GetService( |
54 const base::DictionaryValue& properties, | 59 const base::DictionaryValue& properties, |
55 const ObjectPathCallback& callback, | 60 const ObjectPathCallback& callback, |
56 const ErrorCallback& error_callback) OVERRIDE; | 61 const ErrorCallback& error_callback) OVERRIDE; |
57 virtual void VerifyDestination(const std::string& certificate, | 62 virtual void VerifyDestination(const std::string& certificate, |
58 const std::string& public_key, | 63 const std::string& public_key, |
59 const std::string& nonce, | 64 const std::string& nonce, |
60 const std::string& signed_data, | 65 const std::string& signed_data, |
61 const std::string& device_serial, | 66 const std::string& device_serial, |
62 const BooleanCallback& callback, | 67 const BooleanCallback& callback, |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 // Note: This should remain the last member so it'll be destroyed and | 136 // Note: This should remain the last member so it'll be destroyed and |
132 // invalidate its weak pointers before any other members are destroyed. | 137 // invalidate its weak pointers before any other members are destroyed. |
133 base::WeakPtrFactory<ShillManagerClientStub> weak_ptr_factory_; | 138 base::WeakPtrFactory<ShillManagerClientStub> weak_ptr_factory_; |
134 | 139 |
135 DISALLOW_COPY_AND_ASSIGN(ShillManagerClientStub); | 140 DISALLOW_COPY_AND_ASSIGN(ShillManagerClientStub); |
136 }; | 141 }; |
137 | 142 |
138 } // namespace chromeos | 143 } // namespace chromeos |
139 | 144 |
140 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_STUB_H_ | 145 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_STUB_H_ |
OLD | NEW |