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

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 test miss expectation 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
« no previous file with comments | « chromeos/dbus/ibus/ibus_config_client_unittest.cc ('k') | chromeos/dbus/ibus/mock_ibus_config_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/ibus/ibus_constants.h
diff --git a/chromeos/dbus/ibus/ibus_constants.h b/chromeos/dbus/ibus/ibus_constants.h
index 77f4e8137277cfda35cad423ccce9bace02557ef..7d1956afa4a48d91654f157a8dce6fec0d674dca 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";
@@ -102,6 +109,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";
« no previous file with comments | « chromeos/dbus/ibus/ibus_config_client_unittest.cc ('k') | chromeos/dbus/ibus/mock_ibus_config_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698