OLD | NEW |
| (Empty) |
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 #ifndef CHROMEOS_DBUS_SHILL_STUB_HELPER_H_ | |
6 #define CHROMEOS_DBUS_SHILL_STUB_HELPER_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "chromeos/chromeos_export.h" | |
11 | |
12 namespace chromeos { | |
13 namespace shill_stub_helper { | |
14 | |
15 // Add default devices, services and profiles. This works only if | |
16 // DBusThreadManager was initialized with the FakeShill*Clients. | |
17 void SetupDefaultEnvironment(); | |
18 | |
19 } // namespace shill_stub_helper | |
20 } // namespace chromeos | |
21 | |
22 #endif // CHROMEOS_DBUS_SHILL_STUB_HELPER_H_ | |
OLD | NEW |