Index: chromeos/dbus/shill_test_helper.h |
diff --git a/chromeos/dbus/shill_test_helper.h b/chromeos/dbus/shill_test_helper.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d7736eaf79ee67c1088248af604c37f95501fce6 |
--- /dev/null |
+++ b/chromeos/dbus/shill_test_helper.h |
@@ -0,0 +1,28 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROMEOS_DBUS_SHILL_TEST_HELPER_H_ |
+#define CHROMEOS_DBUS_SHILL_TEST_HELPER_H_ |
+ |
+#include <string> |
+ |
+#include "chromeos/chromeos_export.h" |
+ |
+namespace chromeos { |
+namespace shill_test_helper { |
stevenjb
2013/09/20 17:46:05
How about shill_stub_helper instead?
|
+ |
+CHROMEOS_EXPORT extern const char kSharedProfilePath[]; |
+ |
+// Add default devices, services and profiles. This works only if |
+// DBusThreadManager was initialized with the Shill*ClientStubs. |
+void SetupDefaultEnvironment(); |
+ |
+// Returns true when stub portalled wifi is enabled and it's service |
+// path equals to |path|. |
+CHROMEOS_EXPORT bool IsStubPortalledWifiEnabled(const std::string& path); |
+ |
+} // namespace shill_test_helper |
+} // namespace chromeos |
+ |
+#endif // CHROMEOS_DBUS_SHILL_TEST_HELPER_H_ |