1 // Copyright 2018 The Chromium Authors. All rights reserved.
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 ASH_PUBLIC_CPP_APP_LIST_INTERNAL_APP_ID_CONSTANTS_H_
6 #define ASH_PUBLIC_CPP_APP_LIST_INTERNAL_APP_ID_CONSTANTS_H_
7 
8 namespace ash {
9 
10 // App ids for internal apps, also used to identify the shelf item.
11 // Generated as
12 // crx_file::id_util::GenerateId("org.chromium.keyboardshortcuthelper").
13 constexpr char kInternalAppIdKeyboardShortcutViewer[] =
14     "bhbpmkoclkgbgaefijcdgkfjghcmiijm";
15 
16 // Generated as crx_file::id_util::GenerateId("org.chromium.settings_ui").
17 constexpr char kInternalAppIdSettings[] = "dhnmfjegnohoakobpikffnelcemaplkm";
18 
19 // Generated as
20 // crx_file::id_util::GenerateId("org.chromium.continuous_reading"). This is an
21 // app placehoder for continuous reading in Chrome.
22 constexpr char kInternalAppIdContinueReading[] =
23     "fbokpncipdhffndmljhhidahghagaonp";
24 
25 // Generated as
26 // web_app::GenerateAppIdFromURL(GURL(
27 // "https://google.com/chromebook/whatsnew/embedded/")).
28 constexpr char kReleaseNotesAppId[] = "kddjchdmnnpakappplfnloipgcbioilo";
29 
30 }  // namespace ash
31 
32 #endif  // ASH_PUBLIC_CPP_APP_LIST_INTERNAL_APP_ID_CONSTANTS_H_
33