OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ | 5 #ifndef CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ |
6 #define CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ | 6 #define CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ |
7 | 7 |
8 namespace chromeos { | 8 namespace chromeos { |
9 | 9 |
10 namespace ibus { | 10 namespace ibus { |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 const char kDisableMethod[] = "Disable"; | 48 const char kDisableMethod[] = "Disable"; |
49 const char kPropertyActivateMethod[] = "PropertyActivate"; | 49 const char kPropertyActivateMethod[] = "PropertyActivate"; |
50 const char kPropertyShowMethod[] = "PropertyShow"; | 50 const char kPropertyShowMethod[] = "PropertyShow"; |
51 const char kPropertyHideMethod[] = "PropertyHide"; | 51 const char kPropertyHideMethod[] = "PropertyHide"; |
52 const char kSetCapabilityMethod[] = "SetCapability"; | 52 const char kSetCapabilityMethod[] = "SetCapability"; |
53 const char kResetMethod[] = "Reset"; | 53 const char kResetMethod[] = "Reset"; |
54 const char kProcessKeyEventMethod[] = "ProcessKeyEvent"; | 54 const char kProcessKeyEventMethod[] = "ProcessKeyEvent"; |
55 const char kCandidateClickedMethod[] = "CandidateClicked"; | 55 const char kCandidateClickedMethod[] = "CandidateClicked"; |
56 const char kSetSurroundingTextMethod[] = "SetSurroundingText"; | 56 const char kSetSurroundingTextMethod[] = "SetSurroundingText"; |
57 const char kRegisterPropertiesSignal[] = "RegisterProperties"; | 57 const char kRegisterPropertiesSignal[] = "RegisterProperties"; |
58 const char kUpdatePreeditSignal[] = "UpdatePreedit"; | 58 const char kUpdatePreeditSignal[] = "UpdatePreeditText"; |
59 const char kUpdateAuxiliaryTextSignal[] = "UpdateAuxiliaryText"; | 59 const char kUpdateAuxiliaryTextSignal[] = "UpdateAuxiliaryText"; |
60 const char kUpdateLookupTableSignal[] = "UpdateLookupTable"; | 60 const char kUpdateLookupTableSignal[] = "UpdateLookupTable"; |
61 const char kUpdatePropertySignal[] = "UpdateProperty"; | 61 const char kUpdatePropertySignal[] = "UpdateProperty"; |
62 const char kForwardKeyEventSignal[] = "ForwardKeyEvent"; | 62 const char kForwardKeyEventSignal[] = "ForwardKeyEvent"; |
63 const char kRequireSurroundingTextSignal[] = "RequireSurroundingText"; | 63 const char kRequireSurroundingTextSignal[] = "RequireSurroundingText"; |
| 64 const char kCommitTextSignal[] = "CommitText"; |
64 } // namespace engine | 65 } // namespace engine |
65 | 66 |
66 } // namespace ibus | 67 } // namespace ibus |
67 } // namespace chromeos | 68 } // namespace chromeos |
68 | 69 |
69 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ | 70 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ |
OLD | NEW |