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

Unified Diff: chrome/test/base/ui_test_utils.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
« no previous file with comments | « chrome/test/base/chrome_process_util.cc ('k') | chrome/test/chromedriver/chrome/device_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/ui_test_utils.cc
diff --git a/chrome/test/base/ui_test_utils.cc b/chrome/test/base/ui_test_utils.cc
index 6ebbd913a660058505c938e9eff3b56df9827967..b3f7143f9b7b0b5617207afad818d49cd7af1a81 100644
--- a/chrome/test/base/ui_test_utils.cc
+++ b/chrome/test/base/ui_test_utils.cc
@@ -97,7 +97,7 @@ Browser* WaitForBrowserNotInSet(std::set<Browser*> excluded_browsers) {
BrowserAddedObserver observer;
new_browser = observer.WaitForSingleNewBrowser();
// The new browser should never be in |excluded_browsers|.
- DCHECK(!ContainsKey(excluded_browsers, new_browser));
+ DCHECK(!base::ContainsKey(excluded_browsers, new_browser));
}
return new_browser;
}
« no previous file with comments | « chrome/test/base/chrome_process_util.cc ('k') | chrome/test/chromedriver/chrome/device_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698