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

Unified Diff: chrome/browser/apps/app_window_registry_util.cc

Issue 2230203002: chrome: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed accidental components/ change Created 4 years, 4 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/apps/app_window_registry_util.cc
diff --git a/chrome/browser/apps/app_window_registry_util.cc b/chrome/browser/apps/app_window_registry_util.cc
index d76899389002f29ccbc3f0e93c9dcb7925fb104f..d8702debf325e4bffaa095a0fc5a20f579c0078e 100644
--- a/chrome/browser/apps/app_window_registry_util.cc
+++ b/chrome/browser/apps/app_window_registry_util.cc
@@ -86,7 +86,7 @@ void AppWindowRegistryUtil::CloseAllAppWindows() {
AppWindowList window_list_copy(registry->app_windows());
for (auto* window : window_list_copy) {
// Ensure window is still valid.
- if (ContainsValue(registry->app_windows(), window))
+ if (base::ContainsValue(registry->app_windows(), window))
window->GetBaseWindow()->Close();
}
}
« no previous file with comments | « chrome/browser/apps/app_browsertest.cc ('k') | chrome/browser/background/background_application_list_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698