| Index: chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc
|
| diff --git a/chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc b/chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc
|
| index 09a3c5a67673e3570057c2eed609620417b1e088..017ecaa23967ecdede358b9d5744db36615be9a9 100644
|
| --- a/chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc
|
| +++ b/chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc
|
| @@ -418,7 +418,7 @@ std::unique_ptr<ArcAppListPrefs::PackageInfo> ArcAppListPrefs::GetPackage(
|
|
|
| std::vector<std::string> ArcAppListPrefs::GetAppIds() const {
|
| if (!IsArcEnabled()) {
|
| - // Default Arc apps available before OptIn.
|
| + // Default ARC apps available before OptIn.
|
| std::vector<std::string> ids;
|
| for (const auto& default_app : default_apps_.app_map()) {
|
| if (default_apps_.HasApp(default_app.first))
|
| @@ -449,7 +449,7 @@ std::vector<std::string> ArcAppListPrefs::GetAppIdsNoArcEnabledCheck() const {
|
|
|
| std::unique_ptr<ArcAppListPrefs::AppInfo> ArcAppListPrefs::GetApp(
|
| const std::string& app_id) const {
|
| - // Information for default app is available before Arc enabled.
|
| + // Information for default app is available before ARC enabled.
|
| if (!IsArcEnabled() && !default_apps_.HasApp(app_id))
|
| return std::unique_ptr<AppInfo>();
|
|
|
|
|