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

Unified Diff: chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.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/ash/launcher/arc_app_window_launcher_controller.cc
diff --git a/chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.cc b/chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.cc
index 0c12c0a6fe5faf45cbf1edaf50f05deb4cc645e3..bf4b2022b740868c18438c3e42eed859474c3ae2 100644
--- a/chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.cc
+++ b/chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.cc
@@ -246,7 +246,7 @@ class ArcAppWindowLauncherController::AppWindow : public ui::BaseWindow {
views::Widget* const widget_;
ArcAppWindowLauncherController* owner_;
ArcAppWindowLauncherItemController* controller_ = nullptr;
- // Unowned pointer, represents host Arc window.
+ // Unowned pointer, represents host ARC window.
DISALLOW_COPY_AND_ASSIGN(AppWindow);
};
@@ -289,7 +289,7 @@ void ArcAppWindowLauncherController::ActiveUserChanged(
->GetAccountId()
.GetUserEmail();
if (user_email == primary_user_email) {
- // Restore existing Arc window and create controllers for them.
+ // Restore existing ARC window and create controllers for them.
AttachControllerToWindowsIfNeeded();
// Make sure that we created items for all apps, not only which have a
@@ -300,7 +300,7 @@ void ArcAppWindowLauncherController::ActiveUserChanged(
// Update active status.
OnTaskSetActive(active_task_id_);
} else {
- // Remove all Arc apps and destroy its controllers. There is no mapping
+ // Remove all ARC apps and destroy its controllers. There is no mapping
// task id to app window because it is not safe when controller is missing.
for (auto& it : task_id_to_app_window_info_)
UnregisterApp(it.second.get());
@@ -334,7 +334,7 @@ void ArcAppWindowLauncherController::OnWindowVisibilityChanged(
aura::Window* window,
bool visible) {
// Attach window to multi-user manager now to let it manage visibility state
- // of the Arc window correctly.
+ // of the ARC window correctly.
if (GetWindowTaskId(window) > 0) {
chrome::MultiUserWindowManager::GetInstance()->SetWindowOwner(
window,

Powered by Google App Engine
This is Rietveld 408576698