Upload upstream chromium 120.0.6099.5
[platform/framework/web/chromium-efl.git] / components / app_constants / constants.h
1 // Copyright 2022 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_APP_CONSTANTS_CONSTANTS_H_
6 #define COMPONENTS_APP_CONSTANTS_CONSTANTS_H_
7
8 #include "base/component_export.h"
9
10 namespace app_constants {
11
12 // App IDs are a unique internal identifier for apps on Chrome OS. For
13 // historical reasons, they are a SHA hash of some uniquely identifying
14 // constant associated with an app, transposed from the [0-9a-f] range to [a-p]
15 // (the same format used by Chrome's extension IDs). The following are app IDs
16 // for the Chrome browser application on Chrome OS.
17
18 // The ID of the Chrome component application as part of ash.
19 COMPONENT_EXPORT(APP_CONSTANTS) extern const char kChromeAppId[];
20
21 // The ID of Ash Browser for debugging.
22 COMPONENT_EXPORT(APP_CONSTANTS) extern const char kAshDebugBrowserAppId[];
23
24 // The ID of the Lacros Chrome browser application that runs outside of ash.
25 COMPONENT_EXPORT(APP_CONSTANTS) extern const char kLacrosAppId[];
26
27 }  // namespace app_constants
28
29 #endif  // COMPONENTS_APP_CONSTANTS_CONSTANTS_H_