summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkomatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-18 16:27:33 +0000
committerkomatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-18 16:27:33 +0000
commit08bdc8fb6059627732e69fa058d125c41d213a9a (patch)
treedc1fd83974cb1bad113b0cd0de0ea335df2af731
parentc7d5983697f3d21a0bd3a745c977814340390c0a (diff)
downloadchromium_src-08bdc8fb6059627732e69fa058d125c41d213a9a.zip
chromium_src-08bdc8fb6059627732e69fa058d125c41d213a9a.tar.gz
chromium_src-08bdc8fb6059627732e69fa058d125c41d213a9a.tar.bz2
Delete dbus/ibus directory.
This is the last patch to delete dbus/ibus directory. BUG=275262 Review URL: https://codereview.chromium.org/71203003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235739 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chromeos/chromeos.gyp1
-rw-r--r--chromeos/dbus/dbus_thread_manager.h2
-rw-r--r--chromeos/dbus/ibus/OWNERS1
-rw-r--r--chromeos/dbus/ibus/ibus_constants.h65
4 files changed, 0 insertions, 69 deletions
diff --git a/chromeos/chromeos.gyp b/chromeos/chromeos.gyp
index 6eab801..776597d 100644
--- a/chromeos/chromeos.gyp
+++ b/chromeos/chromeos.gyp
@@ -169,7 +169,6 @@
'dbus/shill_service_client.h',
'dbus/shill_stub_helper.cc',
'dbus/shill_stub_helper.h',
- 'dbus/ibus/ibus_constants.h',
'dbus/image_burner_client.cc',
'dbus/image_burner_client.h',
'dbus/introspectable_client.cc',
diff --git a/chromeos/dbus/dbus_thread_manager.h b/chromeos/dbus/dbus_thread_manager.h
index d2387c4..c980b27 100644
--- a/chromeos/dbus/dbus_thread_manager.h
+++ b/chromeos/dbus/dbus_thread_manager.h
@@ -37,8 +37,6 @@ class CryptohomeClient;
class DBusClient;
class DebugDaemonClient;
class GsmSMSClient;
-class IBusEngineFactoryService;
-class IBusEngineService;
class ImageBurnerClient;
class IntrospectableClient;
class ModemMessagingClient;
diff --git a/chromeos/dbus/ibus/OWNERS b/chromeos/dbus/ibus/OWNERS
deleted file mode 100644
index a6c3117..0000000
--- a/chromeos/dbus/ibus/OWNERS
+++ /dev/null
@@ -1 +0,0 @@
-nona@chromium.org
diff --git a/chromeos/dbus/ibus/ibus_constants.h b/chromeos/dbus/ibus/ibus_constants.h
deleted file mode 100644
index de81d8c..0000000
--- a/chromeos/dbus/ibus/ibus_constants.h
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright (c) 2012 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_IBUS_IBUS_CONSTANTS_H_
-#define CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_
-
-namespace chromeos {
-
-namespace ibus {
-
-const char kServiceName[] = "org.freedesktop.IBus";
-
-// Constants used to receive NameOwner signals from ibus-daemon. Note that
-// "org.freedesktop.DBus" is used instead of "org.freedesktop.IBus" for these
-// signals.
-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";
-const char kCreateInputContextMethod[] = "CreateInputContext";
-const char kRegisterComponentMethod[] = "RegisterComponent";
-const char kSetGlobalEngineMethod[] = "SetGlobalEngine";
-const char kExitMethod[] = "Exit";
-} // namespace bus
-
-namespace input_context {
-const char kServiceInterface[] = "org.freedesktop.IBus.InputContext";
-const char kForwardKeyEventSignal[] = "ForwardKeyEvent";
-const char kHidePreeditTextSignal[] = "HidePreeditText";
-const char kShowPreeditTextSignal[] = "ShowPreeditText";
-const char kUpdatePreeditTextSignal[] = "UpdatePreeditText";
-const char kDeleteSurroundingTextSignal[] = "DeleteSurroundingText";
-const char kFocusInMethod[] = "FocusIn";
-const char kFocusOutMethod[] = "FocusOut";
-const char kResetMethod[] = "Reset";
-const char kSetCapabilitiesMethod[] = "SetCapabilities";
-const char kSetCursorLocationMethod[] = "SetCursorLocation";
-const char kProcessKeyEventMethod[] = "ProcessKeyEvent";
-const char kSetSurroundingTextMethod[] = "SetSurroundingText";
-const char kPropertyActivateMethod[] = "PropertyActivate";
-} // namespace input_context
-
-namespace engine_factory {
-const char kServicePath[] = "/org/freedesktop/IBus/Factory";
-const char kServiceInterface[] = "org.freedesktop.IBus.Factory";
-const char kCreateEngineMethod[] = "CreateEngine";
-} // namespace engine_factory
-
-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";
-} // namespace config
-
-} // namespace ibus
-} // namespace chromeos
-
-#endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_