diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-02 05:49:13 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-02 05:49:13 +0000 |
commit | 14da67b06acb49b3a2bd74c9a5425d9aae27e9ce (patch) | |
tree | 89336e798dbdbfa02250b113fcce09af2b377275 /chrome/browser/extensions/extension_input_module_constants.h | |
parent | 41c685d2126b1ffe5733f821f785460bd767bafe (diff) | |
download | chromium_src-14da67b06acb49b3a2bd74c9a5425d9aae27e9ce.zip chromium_src-14da67b06acb49b3a2bd74c9a5425d9aae27e9ce.tar.gz chromium_src-14da67b06acb49b3a2bd74c9a5425d9aae27e9ce.tar.bz2 |
Add the handlers for the IME extension API.
BUG=chromium-os:16090
TEST=None
Review URL: http://codereview.chromium.org/7351010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95052 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_input_module_constants.h')
-rw-r--r-- | chrome/browser/extensions/extension_input_module_constants.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/chrome/browser/extensions/extension_input_module_constants.h b/chrome/browser/extensions/extension_input_module_constants.h new file mode 100644 index 0000000..784a67c --- /dev/null +++ b/chrome/browser/extensions/extension_input_module_constants.h @@ -0,0 +1,41 @@ +// Copyright (c) 2011 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. + +// Constants used for the input API and the Windows API. + +#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ +#define CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ +#pragma once + +namespace extension_input_module_constants { + +// Keys used in serializing input data & events. +extern const char kAnnotationKey[]; +extern const char kAuxiliaryTextKey[]; +extern const char kAuxiliaryTextVisibleKey[]; +extern const char kCandidateIdKey[]; +extern const char kCandidateKey[]; +extern const char kCandidatesKey[]; +extern const char kContextIdKey[]; +extern const char kCursorVisibleKey[]; +extern const char kEndKey[]; +extern const char kEngineIdKey[]; +extern const char kIdKey[]; +extern const char kLabelKey[]; +extern const char kPageSizeKey[]; +extern const char kPropertiesKey[]; +extern const char kSegmentsKey[]; +extern const char kSelectionEndKey[]; +extern const char kSelectionStartKey[]; +extern const char kStartKey[]; +extern const char kStyleDoubleUnderline[]; +extern const char kStyleKey[]; +extern const char kStyleUnderline[]; +extern const char kTextKey[]; +extern const char kVerticalKey[]; +extern const char kVisibleKey[]; + +}; // namespace extension_input_module_constants + +#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ |