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

Unified Diff: chrome/browser/ui/webui/md_downloads/downloads_list_tracker_unittest.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/webui/md_downloads/downloads_list_tracker_unittest.cc
diff --git a/chrome/browser/ui/webui/md_downloads/downloads_list_tracker_unittest.cc b/chrome/browser/ui/webui/md_downloads/downloads_list_tracker_unittest.cc
index 0e7adfd5512c53dd7135d88a82281863bb8926dd..f3f897869f68a7c221db93fb94a57d26fbecb7da 100644
--- a/chrome/browser/ui/webui/md_downloads/downloads_list_tracker_unittest.cc
+++ b/chrome/browser/ui/webui/md_downloads/downloads_list_tracker_unittest.cc
@@ -98,7 +98,7 @@ class DownloadsListTrackerTest : public testing::Test {
~DownloadsListTrackerTest() override {
for (auto* mock_item : mock_items_)
testing::Mock::VerifyAndClear(mock_item);
- STLDeleteElements(&mock_items_);
+ base::STLDeleteElements(&mock_items_);
}
// testing::Test:

Powered by Google App Engine
This is Rietveld 408576698