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

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

Issue 9877018: Lazy background page branding: "Transient Background Page". Rename (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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";
11 const char kApp[] = "app"; 11 const char kApp[] = "app";
12 const char kBackground[] = "background"; 12 const char kBackground[] = "background";
13 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; 13 const char kBackgroundAllowJsAccess[] = "background.allow_js_access";
14 const char kBackgroundPage[] = "background.page"; 14 const char kBackgroundPage[] = "background.page";
15 const char kBackgroundPageLegacy[] = "background_page"; 15 const char kBackgroundPageLegacy[] = "background_page";
16 const char kBackgroundPersistent[] = "background.persistent"; 16 const char kBackgroundTransient[] = "background.transient";
17 const char kBackgroundScripts[] = "background.scripts"; 17 const char kBackgroundScripts[] = "background.scripts";
18 const char kBrowserAction[] = "browser_action"; 18 const char kBrowserAction[] = "browser_action";
19 const char kChromeURLOverrides[] = "chrome_url_overrides"; 19 const char kChromeURLOverrides[] = "chrome_url_overrides";
20 const char kCommands[] = "commands"; 20 const char kCommands[] = "commands";
21 const char kContentScripts[] = "content_scripts"; 21 const char kContentScripts[] = "content_scripts";
22 const char kContentSecurityPolicy[] = "content_security_policy"; 22 const char kContentSecurityPolicy[] = "content_security_policy";
23 const char kConvertedFromUserScript[] = "converted_from_user_script"; 23 const char kConvertedFromUserScript[] = "converted_from_user_script";
24 const char kCss[] = "css"; 24 const char kCss[] = "css";
25 const char kCtrlKey[] = "ctrlKey"; 25 const char kCtrlKey[] = "ctrlKey";
26 const char kCurrentLocale[] = "current_locale"; 26 const char kCurrentLocale[] = "current_locale";
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 "Loading platform_app extension type is turned off by default. " 464 "Loading platform_app extension type is turned off by default. "
465 "You can enable this type with the --enable-platform-apps " 465 "You can enable this type with the --enable-platform-apps "
466 "command-line flag."; 466 "command-line flag.";
467 const char kReservedMessageFound[] = 467 const char kReservedMessageFound[] =
468 "Reserved key * found in message catalog."; 468 "Reserved key * found in message catalog.";
469 #if defined(OS_CHROMEOS) 469 #if defined(OS_CHROMEOS)
470 const char kIllegalPlugins[] = 470 const char kIllegalPlugins[] =
471 "Extensions cannot install plugins on Chrome OS"; 471 "Extensions cannot install plugins on Chrome OS";
472 #endif 472 #endif
473 } // namespace extension_manifest_errors 473 } // namespace extension_manifest_errors
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698