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

Unified Diff: chrome/browser/ui/views/tabs/window_finder_mus.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/ui/views/tabs/window_finder_mus.cc
diff --git a/chrome/browser/ui/views/tabs/window_finder_mus.cc b/chrome/browser/ui/views/tabs/window_finder_mus.cc
index af753aafc30816f7955d7caf7b647f943e58f3f0..c42aec3a897db645a9955c554024a3436957e4bb 100644
--- a/chrome/browser/ui/views/tabs/window_finder_mus.cc
+++ b/chrome/browser/ui/views/tabs/window_finder_mus.cc
@@ -27,7 +27,7 @@ gfx::NativeWindow WindowFinderMus::GetLocalProcessWindowAtPoint(
aura::Window* content_window = widget->GetNativeWindow();
// If we were instructed to ignore this window, ignore it.
- if (ContainsKey(ignore, content_window))
+ if (base::ContainsKey(ignore, content_window))
continue;
return content_window;

Powered by Google App Engine
This is Rietveld 408576698