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

Unified Diff: chrome/test/chromedriver/chrome/devtools_http_client.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/chromedriver/chrome/device_manager.cc ('k') | chrome/test/chromedriver/commands.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/chrome/devtools_http_client.cc
diff --git a/chrome/test/chromedriver/chrome/devtools_http_client.cc b/chrome/test/chromedriver/chrome/devtools_http_client.cc
index 34023aeb18344c24b923324196ed3bd30be1e58b..ea1f1ddd76767ebf83bf865495d532be383f2c76 100644
--- a/chrome/test/chromedriver/chrome/devtools_http_client.cc
+++ b/chrome/test/chromedriver/chrome/devtools_http_client.cc
@@ -158,7 +158,7 @@ const DeviceMetrics* DevToolsHttpClient::device_metrics() {
}
bool DevToolsHttpClient::IsBrowserWindow(const WebViewInfo& view) const {
- return ContainsKey(*window_types_, view.type) ||
+ return base::ContainsKey(*window_types_, view.type) ||
(view.type == WebViewInfo::kOther &&
(base::StartsWith(view.url, "chrome-extension://",
base::CompareCase::SENSITIVE) ||
« no previous file with comments | « chrome/test/chromedriver/chrome/device_manager.cc ('k') | chrome/test/chromedriver/commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698