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

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

Issue 1301323005: Implement kiosk multiple apps feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits. Created 5 years, 3 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 const char kIndicator[] = "indicator"; 61 const char kIndicator[] = "indicator";
62 const char kInputComponents[] = "input_components"; 62 const char kInputComponents[] = "input_components";
63 const char kInputView[] = "input_view"; 63 const char kInputView[] = "input_view";
64 const char kIsolation[] = "app.isolation"; 64 const char kIsolation[] = "app.isolation";
65 const char kJs[] = "js"; 65 const char kJs[] = "js";
66 const char kKey[] = "key"; 66 const char kKey[] = "key";
67 const char kKeycode[] = "keyCode"; 67 const char kKeycode[] = "keyCode";
68 const char kKioskEnabled[] = "kiosk_enabled"; 68 const char kKioskEnabled[] = "kiosk_enabled";
69 const char kKioskOnly[] = "kiosk_only"; 69 const char kKioskOnly[] = "kiosk_only";
70 const char kKioskMode[] = "kiosk_mode"; 70 const char kKioskMode[] = "kiosk_mode";
71 const char kKioskSecondaryApps[] = "kiosk_secondary_apps";
71 const char kLanguage[] = "language"; 72 const char kLanguage[] = "language";
72 const char kLaunch[] = "app.launch"; 73 const char kLaunch[] = "app.launch";
73 const char kLaunchContainer[] = "app.launch.container"; 74 const char kLaunchContainer[] = "app.launch.container";
74 const char kLauncherPage[] = "launcher_page"; 75 const char kLauncherPage[] = "launcher_page";
75 const char kLauncherPagePage[] = "launcher_page.page"; 76 const char kLauncherPagePage[] = "launcher_page.page";
76 const char kLaunchHeight[] = "app.launch.height"; 77 const char kLaunchHeight[] = "app.launch.height";
77 const char kLaunchLocalPath[] = "app.launch.local_path"; 78 const char kLaunchLocalPath[] = "app.launch.local_path";
78 const char kLaunchWebURL[] = "app.launch.web_url"; 79 const char kLaunchWebURL[] = "app.launch.web_url";
79 const char kLaunchWidth[] = "app.launch.width"; 80 const char kLaunchWidth[] = "app.launch.width";
80 const char kLayouts[] = "layouts"; 81 const char kLayouts[] = "layouts";
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 "Too many shortcuts specified for 'commands': The maximum is *."; 452 "Too many shortcuts specified for 'commands': The maximum is *.";
452 const char kInvalidKeyBindingUnknownPlatform[] = 453 const char kInvalidKeyBindingUnknownPlatform[] =
453 "Unknown platform for 'command[*]': *. Valid values are: 'windows', 'mac'" 454 "Unknown platform for 'command[*]': *. Valid values are: 'windows', 'mac'"
454 " 'chromeos', 'linux' and 'default'."; 455 " 'chromeos', 'linux' and 'default'.";
455 const char kInvalidKioskEnabled[] = 456 const char kInvalidKioskEnabled[] =
456 "Invalid value for 'kiosk_enabled'."; 457 "Invalid value for 'kiosk_enabled'.";
457 const char kInvalidKioskOnly[] = 458 const char kInvalidKioskOnly[] =
458 "Invalid value for 'kiosk_only'."; 459 "Invalid value for 'kiosk_only'.";
459 const char kInvalidKioskOnlyButNotEnabled[] = 460 const char kInvalidKioskOnlyButNotEnabled[] =
460 "The 'kiosk_only' key is set, but 'kiosk_enabled' is not set."; 461 "The 'kiosk_only' key is set, but 'kiosk_enabled' is not set.";
462 const char kInvalidKioskSecondaryApps[] =
463 "Invalid value for 'kiosk_secondary_apps'";
464 const char kInvalidKioskSecondaryAppsBadAppEntry[] =
465 "Invalid app id item for 'kiosk_secondary_apps'";
466 const char kInvalidKioskSecondaryAppsBadAppId[] =
467 "Invalid app id value for 'kiosk_secondary_apps'";
461 const char kInvalidLauncherPage[] = "Invalid value for 'launcher_page'."; 468 const char kInvalidLauncherPage[] = "Invalid value for 'launcher_page'.";
462 const char kInvalidLauncherPagePage[] = 469 const char kInvalidLauncherPagePage[] =
463 "Invalid value for 'launcher_page.page'."; 470 "Invalid value for 'launcher_page.page'.";
464 const char kInvalidLaunchContainer[] = 471 const char kInvalidLaunchContainer[] =
465 "Invalid value for 'app.launch.container'."; 472 "Invalid value for 'app.launch.container'.";
466 const char kInvalidLaunchValue[] = 473 const char kInvalidLaunchValue[] =
467 "Invalid value for '*'."; 474 "Invalid value for '*'.";
468 const char kInvalidLaunchValueContainer[] = 475 const char kInvalidLaunchValueContainer[] =
469 "Invalid container type for '*'."; 476 "Invalid container type for '*'.";
470 const char kInvalidLinkedAppIcon[] = 477 const char kInvalidLinkedAppIcon[] =
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 "'file_system_provider_capabilities' section to be specified in the " 721 "'file_system_provider_capabilities' section to be specified in the "
715 "manifest."; 722 "manifest.";
716 const char kInvalidFileSystemProviderMissingPermission[] = 723 const char kInvalidFileSystemProviderMissingPermission[] =
717 "The 'file_system_provider_capabilities' section requires the " 724 "The 'file_system_provider_capabilities' section requires the "
718 "'fileSystemProvider' permission to be specified in the manifest."; 725 "'fileSystemProvider' permission to be specified in the manifest.";
719 #endif 726 #endif
720 727
721 } // namespace manifest_errors 728 } // namespace manifest_errors
722 729
723 } // namespace extensions 730 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698