| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROMEOS_DBUS_IBUS_IBUS_CONST_H_ | |
| 6 #define CHROMEOS_DBUS_IBUS_IBUS_CONST_H_ | |
| 7 | |
| 8 namespace chromeos { | |
| 9 | |
| 10 const char kIBusServiceName[] = "org.freedesktop.IBus"; | |
| 11 const char kIBusServicePath[] = "/org/freedesktop/IBus"; | |
| 12 const char kIBusServiceInterface[] = "org.freedesktop.IBus"; | |
| 13 | |
| 14 const char kIBusBusCreateInputContextMethod[] = "CreateInputContext"; | |
| 15 | |
| 16 } // namespace chromeos | |
| 17 | |
| 18 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONST_H_ | |
| OLD | NEW |