blob: 54fa91d3b0764e8e85ca2fbff91a55e5dee6818d [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/api/management/management_api_constants.h"
namespace extension_management_api_constants {
const char kDisabledReasonKey[] = "disabledReason";
const char kDisabledReasonPermissionsIncrease[] = "permissions_increase";
const char kExtensionCreateError[] =
"Failed to create extension from manifest.";
const char kGestureNeededForEscalationError[] =
"Re-enabling an extension disabled due to permissions increase "
"requires a user gesture.";
const char kGestureNeededForMV2DeprecationReEnableError[] =
"Re-enabling an extension disabled due to MV2 deprecation requires a user "
"gesture.";
const char kGestureNeededForUninstallError[] =
"chrome.management.uninstall requires a user gesture.";
const char kManifestParseError[] = "Failed to parse manifest.";
const char kNoExtensionError[] = "Failed to find extension with id *.";
const char kNotAnAppError[] = "Extension * is not an App.";
const char kUserCantModifyError[] = "Extension * cannot be modified by user.";
const char kUninstallCanceledError[] =
"Extension * uninstall canceled by user.";
const char kUserDidNotReEnableError[] =
"The user did not accept the re-enable dialog.";
const char kMissingRequirementsError[] = "There were missing requirements: *";
const char kGestureNeededForCreateAppShortcutError[] =
"chrome.management.createAppShortcut requires a user gesture.";
const char kNoBrowserToCreateShortcut[] =
"There is no browser window to create shortcut.";
const char kCreateOnlyPackagedAppShortcutMac[] =
"Shortcuts can only be created for new-style packaged apps on Mac.";
const char kCreateShortcutCanceledError[] =
"App shortcuts creation canceled by user.";
const char kGestureNeededForSetLaunchTypeError[] =
"chrome.management.setLaunchType requires a user gesture.";
const char kLaunchTypeNotAvailableError[] =
"The launch type is not available for this app.";
const char kGestureNeededForGenerateAppForLinkError[] =
"chrome.management.generateAppForLink requires a user gesture.";
const char kInvalidURLError[] = "The URL \"*\" is invalid.";
const char kEmptyTitleError[] = "The title can not be empty.";
const char kGenerateAppForLinkInstallError[] =
"Failed to install the generated app.";
const char kNotAllowedInKioskError[] = "Not allowed in kiosk.";
const char kCannotChangePrimaryKioskAppError[] =
"Cannot change the primary kiosk app state.";
const char kInstallReplacementWebAppInvalidWebAppError[] =
"Web app is not a valid installable web app.";
const char kInstallReplacementWebAppInvalidContextError[] =
"Web apps can't be installed in the current user profile.";
const char kInstallReplacementWebAppNotFromWebstoreError[] =
"Only extensions from the web store can install replacement web apps.";
const char kGestureNeededForInstallReplacementWebAppError[] =
"chrome.management.installReplacementWebApp requires a user gesture.";
const char kParentPermissionFailedError[] = "Parent Permission Request Failed.";
const char kChromeAppsDeprecated[] =
"Chrome app * is deprecated on Window, Mac, and Linux. "
"See https://support.google.com/chrome/?p=chrome_app_deprecation for more "
"info";
} // namespace extension_management_api_constants