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

Side by Side Diff: extensions/common/manifest_constants.cc

Issue 324393002: Extension Toolbar redesign, part 1 (overflow) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "extensions/common/manifest_constants.h" 5 #include "extensions/common/manifest_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace manifest_keys { 9 namespace manifest_keys {
10 10
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 const char kShortName[] = "short_name"; 133 const char kShortName[] = "short_name";
134 const char kSignature[] = "signature"; 134 const char kSignature[] = "signature";
135 const char kSockets[] = "sockets"; 135 const char kSockets[] = "sockets";
136 const char kSpellcheck[] = "spellcheck"; 136 const char kSpellcheck[] = "spellcheck";
137 const char kSpellcheckDictionaryFormat[] = "dictionary_format"; 137 const char kSpellcheckDictionaryFormat[] = "dictionary_format";
138 const char kSpellcheckDictionaryLanguage[] = "dictionary_language"; 138 const char kSpellcheckDictionaryLanguage[] = "dictionary_language";
139 const char kSpellcheckDictionaryLocale[] = "dictionary_locale"; 139 const char kSpellcheckDictionaryLocale[] = "dictionary_locale";
140 const char kSpellcheckDictionaryPath[] = "dictionary_path"; 140 const char kSpellcheckDictionaryPath[] = "dictionary_path";
141 const char kStorageManagedSchema[] = "storage.managed_schema"; 141 const char kStorageManagedSchema[] = "storage.managed_schema";
142 const char kSuggestedKey[] = "suggested_key"; 142 const char kSuggestedKey[] = "suggested_key";
143 const char kSynthesizeBrowserAction[] = "_synthesize_browser_action";
143 const char kSystemIndicator[] = "system_indicator"; 144 const char kSystemIndicator[] = "system_indicator";
144 const char kTheme[] = "theme"; 145 const char kTheme[] = "theme";
145 const char kThemeColors[] = "colors"; 146 const char kThemeColors[] = "colors";
146 const char kThemeDisplayProperties[] = "properties"; 147 const char kThemeDisplayProperties[] = "properties";
147 const char kThemeImages[] = "images"; 148 const char kThemeImages[] = "images";
148 const char kThemeTints[] = "tints"; 149 const char kThemeTints[] = "tints";
149 const char kTtsEngine[] = "tts_engine"; 150 const char kTtsEngine[] = "tts_engine";
150 const char kTtsGenderFemale[] = "female"; 151 const char kTtsGenderFemale[] = "female";
151 const char kTtsGenderMale[] = "male"; 152 const char kTtsGenderMale[] = "male";
152 const char kTtsVoices[] = "voices"; 153 const char kTtsVoices[] = "voices";
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 const char kWebRequestConflictsWithLazyBackground[] = 726 const char kWebRequestConflictsWithLazyBackground[] =
726 "The 'webRequest' API cannot be used with event pages."; 727 "The 'webRequest' API cannot be used with event pages.";
727 #if defined(OS_CHROMEOS) 728 #if defined(OS_CHROMEOS)
728 const char kIllegalPlugins[] = 729 const char kIllegalPlugins[] =
729 "Extensions cannot install plugins on Chrome OS"; 730 "Extensions cannot install plugins on Chrome OS";
730 #endif 731 #endif
731 732
732 } // namespace manifest_errors 733 } // namespace manifest_errors
733 734
734 } // namespace extensions 735 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698