OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/extensions/default_app_order.h" | 5 #include "chrome/browser/chromeos/extensions/default_app_order.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 "lneaknkopdijkpnocmklfnjbeapigfbh", // Google Maps | 95 "lneaknkopdijkpnocmklfnjbeapigfbh", // Google Maps |
96 "apdfllckaahabafndbhieahigkjlhalf", // Drive | 96 "apdfllckaahabafndbhieahigkjlhalf", // Drive |
97 extension_misc::kGoogleDocAppId, | 97 extension_misc::kGoogleDocAppId, |
98 extension_misc::kGoogleSheetsAppId, | 98 extension_misc::kGoogleSheetsAppId, |
99 extension_misc::kGoogleSlidesAppId, | 99 extension_misc::kGoogleSlidesAppId, |
100 "dlppkpafhbajpcmmoheippocdidnckmm", // Google+ | 100 "dlppkpafhbajpcmmoheippocdidnckmm", // Google+ |
101 "kbpgddbgniojgndnhlkjbkpknjhppkbk", // Google+ Hangouts | 101 "kbpgddbgniojgndnhlkjbkpknjhppkbk", // Google+ Hangouts |
102 "hhaomjibdihmijegdhdafkllkbggdgoj", // Files | 102 "hhaomjibdihmijegdhdafkllkbggdgoj", // Files |
103 extension_misc::kGooglePlayMusicAppId, | 103 extension_misc::kGooglePlayMusicAppId, |
104 "mmimngoggfoobjdlefbcabngfnmieonb", // Play Books | 104 "mmimngoggfoobjdlefbcabngfnmieonb", // Play Books |
105 "fppdphmgcddhjeddoeghpjefkdlccljb", // Play Movies | 105 "gdijeikdkaembjbdobgfkoidjkpbmlkd", // Play Movies & TV |
106 "fobcpibfeplaikcclojfdhfdmbbeofai", // Games | 106 "fobcpibfeplaikcclojfdhfdmbbeofai", // Games |
107 "joodangkbfjnajiiifokapkpmhfnpleo", // Calculator | 107 "joodangkbfjnajiiifokapkpmhfnpleo", // Calculator |
108 "hfhhnacclhffhdffklopdkcgdhifgngh", // Camera | 108 "hfhhnacclhffhdffklopdkcgdhifgngh", // Camera |
109 "gbchcmhmhahfdphkhkmpfmihenigjmpp", // Chrome Remote Desktop | 109 "gbchcmhmhahfdphkhkmpfmihenigjmpp", // Chrome Remote Desktop |
110 }; | 110 }; |
111 | 111 |
112 for (size_t i = 0; i < arraysize(kDefaultAppOrder); ++i) | 112 for (size_t i = 0; i < arraysize(kDefaultAppOrder); ++i) |
113 app_ids->push_back(std::string(kDefaultAppOrder[i])); | 113 app_ids->push_back(std::string(kDefaultAppOrder[i])); |
114 } | 114 } |
115 | 115 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 std::string GetOemAppsFolderName() { | 191 std::string GetOemAppsFolderName() { |
192 // |loader_instance| could be NULL for test. | 192 // |loader_instance| could be NULL for test. |
193 if (!loader_instance) | 193 if (!loader_instance) |
194 return std::string(); | 194 return std::string(); |
195 else | 195 else |
196 return loader_instance->GetOemAppsFolderName(); | 196 return loader_instance->GetOemAppsFolderName(); |
197 } | 197 } |
198 | 198 |
199 } // namespace default_app_order | 199 } // namespace default_app_order |
200 } // namespace chromeos | 200 } // namespace chromeos |
OLD | NEW |