diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-05 07:19:47 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-05 07:19:47 +0000 |
commit | 58bef76fded47034de154fbcadd9fab571d4188e (patch) | |
tree | 518d00264057d5bde50e32e3133aca7c5c37ad44 | |
parent | b5aa46ba83663bd7c02c152daafea771041fb52b (diff) | |
download | chromium_src-58bef76fded47034de154fbcadd9fab571d4188e.zip chromium_src-58bef76fded47034de154fbcadd9fab571d4188e.tar.gz chromium_src-58bef76fded47034de154fbcadd9fab571d4188e.tar.bz2 |
Fix typo in extension constants
BUG=None
TEST=try -b linux
Review URL: http://codereview.chromium.org/9310052
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120512 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/common/extensions/extension_constants.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc index bb9c154..82abf14 100644 --- a/chrome/common/extensions/extension_constants.cc +++ b/chrome/common/extensions/extension_constants.cc @@ -230,19 +230,19 @@ const char kInvalidIncognitoBehavior[] = const char kInvalidInputComponents[] = "Invalid value for 'input_components'"; const char kInvalidInputComponentDescription[] = - "Invalid value for 'input_conponents[*].description"; + "Invalid value for 'input_components[*].description"; const char kInvalidInputComponentLayoutName[] = - "Invalid value for 'input_conponents[*].layouts[*]"; + "Invalid value for 'input_components[*].layouts[*]"; const char kInvalidInputComponentLayouts[] = - "Invalid value for 'input_conponents[*].layouts"; + "Invalid value for 'input_components[*].layouts"; const char kInvalidInputComponentName[] = - "Invalid value for 'input_conponents[*].name"; + "Invalid value for 'input_components[*].name"; const char kInvalidInputComponentShortcutKey[] = - "Invalid value for 'input_conponents[*].shortcutKey"; + "Invalid value for 'input_components[*].shortcutKey"; const char kInvalidInputComponentShortcutKeycode[] = - "Invalid value for 'input_conponents[*].shortcutKey.keyCode"; + "Invalid value for 'input_components[*].shortcutKey.keyCode"; const char kInvalidInputComponentType[] = - "Invalid value for 'input_conponents[*].type"; + "Invalid value for 'input_components[*].type"; const char kInvalidIntent[] = "Invalid value for intents[*]"; const char kInvalidIntentDisposition[] = |