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

Side by Side Diff: chrome/common/extensions/extension_manifest_constants.cc

Issue 14772016: Treats empty layout as expected. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 (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 #include "chrome/common/extensions/extension_manifest_constants.h" 5 #include "chrome/common/extensions/extension_manifest_constants.h"
6 6
7 namespace extension_manifest_keys { 7 namespace extension_manifest_keys {
8 8
9 const char kAllFrames[] = "all_frames"; 9 const char kAllFrames[] = "all_frames";
10 const char kAltKey[] = "altKey"; 10 const char kAltKey[] = "altKey";
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 "Invalid value for 'incognito'."; 324 "Invalid value for 'incognito'.";
325 const char kInvalidIncognitoModeForPlatformApp[] = 325 const char kInvalidIncognitoModeForPlatformApp[] =
326 "Invalid value for 'incognito'. Packaged apps must use split incognito " 326 "Invalid value for 'incognito'. Packaged apps must use split incognito "
327 "mode."; 327 "mode.";
328 const char kInvalidInputComponents[] = 328 const char kInvalidInputComponents[] =
329 "Invalid value for 'input_components'"; 329 "Invalid value for 'input_components'";
330 const char kInvalidInputComponentDescription[] = 330 const char kInvalidInputComponentDescription[] =
331 "Invalid value for 'input_components[*].description"; 331 "Invalid value for 'input_components[*].description";
332 const char kInvalidInputComponentLayoutName[] = 332 const char kInvalidInputComponentLayoutName[] =
333 "Invalid value for 'input_components[*].layouts[*]"; 333 "Invalid value for 'input_components[*].layouts[*]";
334 const char kInvalidInputComponentLayouts[] =
335 "Invalid value for 'input_components[*].layouts";
336 const char kInvalidInputComponentName[] = 334 const char kInvalidInputComponentName[] =
337 "Invalid value for 'input_components[*].name"; 335 "Invalid value for 'input_components[*].name";
338 const char kInvalidInputComponentShortcutKey[] = 336 const char kInvalidInputComponentShortcutKey[] =
339 "Invalid value for 'input_components[*].shortcutKey"; 337 "Invalid value for 'input_components[*].shortcutKey";
340 const char kInvalidInputComponentShortcutKeycode[] = 338 const char kInvalidInputComponentShortcutKeycode[] =
341 "Invalid value for 'input_components[*].shortcutKey.keyCode"; 339 "Invalid value for 'input_components[*].shortcutKey.keyCode";
342 const char kInvalidInputComponentType[] = 340 const char kInvalidInputComponentType[] =
343 "Invalid value for 'input_components[*].type"; 341 "Invalid value for 'input_components[*].type";
344 const char kInvalidIntent[] = 342 const char kInvalidIntent[] =
345 "Invalid value for intents[*]"; 343 "Invalid value for intents[*]";
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 const char kScriptBadgeTitleIgnored[] = 604 const char kScriptBadgeTitleIgnored[] =
607 "default_title specified in script_badge manifest section will not be " 605 "default_title specified in script_badge manifest section will not be "
608 "used."; 606 "used.";
609 const char kWebRequestConflictsWithLazyBackground[] = 607 const char kWebRequestConflictsWithLazyBackground[] =
610 "The 'webRequest' API cannot be used with event pages."; 608 "The 'webRequest' API cannot be used with event pages.";
611 #if defined(OS_CHROMEOS) 609 #if defined(OS_CHROMEOS)
612 const char kIllegalPlugins[] = 610 const char kIllegalPlugins[] =
613 "Extensions cannot install plugins on Chrome OS"; 611 "Extensions cannot install plugins on Chrome OS";
614 #endif 612 #endif
615 } // namespace extension_manifest_errors 613 } // namespace extension_manifest_errors
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698