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

Unified Diff: chrome/browser/browsing_data/mock_browsing_data_file_system_helper.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/browsing_data/mock_browsing_data_file_system_helper.cc
diff --git a/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.cc b/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.cc
index 14e9413bd84427783ed6199242a6923a9dc0a15b..d76ec1062cac97b89faf97a4a9bc2b26e2455fc0 100644
--- a/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.cc
+++ b/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.cc
@@ -27,7 +27,7 @@ void MockBrowsingDataFileSystemHelper::DeleteFileSystemOrigin(
const GURL& origin) {
ASSERT_FALSE(callback_.is_null());
std::string key = origin.spec();
- ASSERT_TRUE(ContainsKey(file_systems_, key));
+ ASSERT_TRUE(base::ContainsKey(file_systems_, key));
last_deleted_origin_ = origin;
file_systems_[key] = false;
}

Powered by Google App Engine
This is Rietveld 408576698