diff options
Diffstat (limited to 'chromium/extensions/common/constants.h')
-rw-r--r-- | chromium/extensions/common/constants.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/chromium/extensions/common/constants.h b/chromium/extensions/common/constants.h index 08ca81734b4..747906a062f 100644 --- a/chromium/extensions/common/constants.h +++ b/chromium/extensions/common/constants.h @@ -6,7 +6,6 @@ #define EXTENSIONS_COMMON_CONSTANTS_H_ #include "base/files/file_path.h" -#include "base/logging.h" #include "base/strings/string_piece_forward.h" #include "components/services/app_service/public/mojom/types.mojom.h" #include "components/version_info/channel.h" @@ -216,9 +215,15 @@ extern const char kCalculatorAppId[]; // The extension id of the demo Calendar application. extern const char kCalendarDemoAppId[]; +// The extension id of the GMail application. +extern const char kGMailAppId[]; + // The extension id of the demo Google Docs application. extern const char kGoogleDocsDemoAppId[]; +// The extension id of the Google Drive application. +extern const char kGoogleDriveAppId[]; + // The extension id of the demo Google Sheets application. extern const char kGoogleSheetsDemoAppId[]; @@ -262,6 +267,9 @@ extern const char kScreensaverAtlasAppId[]; // The extension id of the kukui Demo Mode screensaver app. extern const char kScreensaverKukuiAppId[]; +// The id of the testing extension allowed in the signin profile. +extern const char kSigninProfileTestExtensionId[]; + // Returns true if this app is part of the "system UI". Generally this is UI // that that on other operating systems would be considered part of the OS, // for example the file manager. @@ -287,6 +295,10 @@ extern const logging::LogSeverity kMinimumSeverityToReportError; constexpr version_info::Channel kMinChannelForServiceWorkerBasedExtension = version_info::Channel::DEV; +// IDs for the Media Router Component Extension. +extern const char kCastExtensionIdRelease[]; +extern const char kCastExtensionIdDev[]; + } // namespace extension_misc #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |