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

Unified Diff: chrome/browser/ui/app_list/arc/arc_package_syncable_service.cc

Issue 2700783002: s/\bArc\b/ARC/g for ARC related code. (Closed)
Patch Set: Address ARC++ Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/app_list/arc/arc_package_syncable_service.cc
diff --git a/chrome/browser/ui/app_list/arc/arc_package_syncable_service.cc b/chrome/browser/ui/app_list/arc/arc_package_syncable_service.cc
index 6674fcf689b7652be593a6ad98c3112142981f78..68573ab20de7fd890d3228b0b8e15f1daca6d4e0 100644
--- a/chrome/browser/ui/app_list/arc/arc_package_syncable_service.cc
+++ b/chrome/browser/ui/app_list/arc/arc_package_syncable_service.cc
@@ -202,7 +202,7 @@ syncer::SyncError ArcPackageSyncableService::ProcessSyncChanges(
const syncer::SyncChangeList& change_list) {
if (!sync_processor_.get()) {
return syncer::SyncError(FROM_HERE, syncer::SyncError::DATATYPE_ERROR,
- "Arc package syncable service is not started.",
+ "ARC package syncable service is not started.",
syncer::ARC_PACKAGE);
}
@@ -341,7 +341,7 @@ bool ArcPackageSyncableService::ProcessSyncItemSpecifics(
const sync_pb::ArcPackageSpecifics& specifics) {
const std::string& package_name = specifics.package_name();
if (package_name.empty()) {
- VLOG(2) << "Add/Update Arc package item with empty package name";
+ VLOG(2) << "Add/Update ARC package item with empty package name";
return false;
}
@@ -370,7 +370,7 @@ bool ArcPackageSyncableService::DeleteSyncItemSpecifics(
const sync_pb::ArcPackageSpecifics& specifics) {
const std::string& package_name = specifics.package_name();
if (package_name.empty()) {
- VLOG(2) << "Delete Arc package item with empty package name";
+ VLOG(2) << "Delete ARC package item with empty package name";
return false;
}

Powered by Google App Engine
This is Rietveld 408576698