Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2721)

Unified Diff: dbus/property_unittest.cc

Issue 12491014: Support D-Bus Object Manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comments Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: dbus/property_unittest.cc
diff --git a/dbus/property_unittest.cc b/dbus/property_unittest.cc
index 0172517a5ffa83db3bc0366c39ab76812257f5ab..4a5c633e1ae4efcae28648aff095cdf12e58bdbd 100644
--- a/dbus/property_unittest.cc
+++ b/dbus/property_unittest.cc
@@ -35,7 +35,7 @@ class PropertyTest : public testing::Test {
Properties(dbus::ObjectProxy* object_proxy,
PropertyChangedCallback property_changed_callback)
: dbus::PropertySet(object_proxy,
- "org.chromium.TestService",
+ "org.chromium.TestInterface",
property_changed_callback) {
RegisterProperty("Name", &name);
RegisterProperty("Version", &version);
@@ -69,7 +69,7 @@ class PropertyTest : public testing::Test {
bus_options.dbus_task_runner = dbus_thread_->message_loop_proxy();
bus_ = new dbus::Bus(bus_options);
object_proxy_ = bus_->GetObjectProxy(
- "org.chromium.TestService",
+ "org.chromium.TestInterface",
dbus::ObjectPath("/org/chromium/TestObject"));
ASSERT_TRUE(bus_->HasDBusThread());

Powered by Google App Engine
This is Rietveld 408576698