Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: chrome/browser/chromeos/extensions/default_app_order.cc

Issue 338313002: Swap default Play Movies hosted app with Play Movies Chrome app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698