diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/extensions/common/constants.h | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
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_ |