Index: chromeos/dbus/shill_client_unittest_base.h |
diff --git a/chromeos/dbus/shill_client_unittest_base.h b/chromeos/dbus/shill_client_unittest_base.h |
index 1c56a17d3bb719d835f2bc5b7916bf3861ff16e8..771d4b6403a26c34dfdfa5a9ca7175a500759678 100644 |
--- a/chromeos/dbus/shill_client_unittest_base.h |
+++ b/chromeos/dbus/shill_client_unittest_base.h |
@@ -105,11 +105,21 @@ class ShillClientUnittestBase : public testing::Test { |
const dbus::ObjectPath& result); |
// Checks the result and expects the call status to be SUCCESS. |
+ static void ExpectObjectPathResultWithoutStatus( |
+ const dbus::ObjectPath& expected_result, |
+ const dbus::ObjectPath& result); |
+ |
+ // Checks the result and expects the call status to be SUCCESS. |
static void ExpectDictionaryValueResult( |
const base::DictionaryValue* expected_result, |
DBusMethodCallStatus call_status, |
const base::DictionaryValue& result); |
+ // Expects the |expected_result| to match the |result|. |
+ static void ExpectDictionaryValueResultWithoutStatus( |
+ const base::DictionaryValue* expected_result, |
+ const base::DictionaryValue& result); |
+ |
// A message loop to emulate asynchronous behavior. |
MessageLoop message_loop_; |
// The mock bus. |