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

Unified Diff: chromeos/dbus/ibus/ibus_constants.h

Issue 11413165: Makes IBusConfigClient initialize asynchronous. (Closed) Base URL: http://git.chromium.org/chromium/src.git@base
Patch Set: Fix initialize logic Created 8 years, 1 month 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: chromeos/dbus/ibus/ibus_constants.h
diff --git a/chromeos/dbus/ibus/ibus_constants.h b/chromeos/dbus/ibus/ibus_constants.h
index 87e31ff2b1f44ffad4965ee9b57d06ea91e4c110..8cd842f420d2b669e993ac79d4c7c753869d37f5 100644
--- a/chromeos/dbus/ibus/ibus_constants.h
+++ b/chromeos/dbus/ibus/ibus_constants.h
@@ -11,6 +11,12 @@ namespace ibus {
const char kServiceName[] = "org.freedesktop.IBus";
+const char kDBusServiceName[] = "org.freedesktop.DBus";
+const char kDBusObjectPath[] = "/org/freedesktop/DBus";
+const char kDBusInterface[] = "org.freedesktop.DBus";
+const char kGetNameOwnerMethod[] = "GetNameOwner";
+const char kNameOwnerChangedSignal[] = "NameOwnerChanged";
+
namespace bus {
const char kServicePath[] = "/org/freedesktop/IBus";
const char kServiceInterface[] = "org.freedesktop.IBus";
@@ -69,6 +75,7 @@ const char kCommitTextSignal[] = "CommitText";
} // namespace engine
namespace panel {
+const char kServiceName[] = "org.freedesktop.IBus.Panel";
const char kServicePath[] = "/org/freedesktop/IBus/Panel";
const char kServiceInterface[] = "org.freedesktop.IBus.Panel";
const char kUpdateLookupTableMethod[] = "UpdateLookupTable";
@@ -100,6 +107,7 @@ enum IBusMouseButton {
};
namespace config {
+const char kServiceName[] = "org.freedesktop.IBus.Config";
const char kServicePath[] = "/org/freedesktop/IBus/Config";
const char kServiceInterface[] = "org.freedesktop.IBus.Config";
const char kSetValueMethod[] = "SetValue";

Powered by Google App Engine
This is Rietveld 408576698