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

Side by Side Diff: chromeos/dbus/ibus/ibus_constants.h

Issue 10806006: Implement IBusEngineService (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix wrong usage of Message Created 8 years, 5 months 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 unified diff | Download patch
« no previous file with comments | « no previous file | chromeos/dbus/ibus/ibus_engine_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 23 matching lines...) Expand all
34 } // namespace input_context 34 } // namespace input_context
35 35
36 namespace engine_factory { 36 namespace engine_factory {
37 const char kServicePath[] = "/org/freedesktop/IBus/Factory"; 37 const char kServicePath[] = "/org/freedesktop/IBus/Factory";
38 const char kServiceInterface[] = "org.freedesktop.IBus.Factory"; 38 const char kServiceInterface[] = "org.freedesktop.IBus.Factory";
39 const char kCreateEngineMethod[] = "CreateEngine"; 39 const char kCreateEngineMethod[] = "CreateEngine";
40 } // namespace engine factory 40 } // namespace engine factory
41 41
42 namespace engine { 42 namespace engine {
43 const char kServicePathPrefix[] = "/org/freedesktop/IBus/Engine/"; 43 const char kServicePathPrefix[] = "/org/freedesktop/IBus/Engine/";
44 const char kServiceInterface[] = "org.freedesktop.IBus.Engine";
45 const char kFocusInMethod[] = "FocusIn";
46 const char kFocusOutMethod[] = "FocusOut";
47 const char kEnableMethod[] = "Enable";
48 const char kDisableMethod[] = "Disable";
49 const char kPropertyActivateMethod[] = "PropertyActivate";
50 const char kPropertyShowMethod[] = "PropertyShow";
51 const char kPropertyHideMethod[] = "PropertyHide";
52 const char kSetCapabilityMethod[] = "SetCapability";
53 const char kResetMethod[] = "Reset";
54 const char kProcessKeyEventMethod[] = "ProcessKeyEvent";
55 const char kCandidateClickedMethod[] = "CandidateClicked";
56 const char kSetSurroundingTextMethod[] = "SetSurroundingText";
57 const char kRegisterPropertiesSignal[] = "RegisterProperties";
58 const char kUpdatePreeditSignal[] = "UpdatePreedit";
59 const char kUpdateAuxiliaryTextSignal[] = "UpdateAuxiliaryText";
60 const char kUpdateLookupTableSignal[] = "UpdateLookupTable";
61 const char kUpdatePropertySignal[] = "UpdateProperty";
62 const char kForwardKeyEventSignal[] = "ForwardKeyEvent";
63 const char kRequireSurroundingTextSignal[] = "RequireSurroundingText";
44 } // namespace engine 64 } // namespace engine
45 65
46 } // namespace ibus 66 } // namespace ibus
47 } // namespace chromeos 67 } // namespace chromeos
48 68
49 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ 69 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_
OLDNEW
« no previous file with comments | « no previous file | chromeos/dbus/ibus/ibus_engine_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698