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

Unified Diff: Source/platform/network/HTTPHeaderMap.cpp

Issue 512293003: Removing "using" declarations that import names in the C++ Standard library.(Source/platform/[m* - … (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 | « Source/platform/mac/ThemeMac.mm ('k') | Source/platform/scheduler/SchedulerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/network/HTTPHeaderMap.cpp
diff --git a/Source/platform/network/HTTPHeaderMap.cpp b/Source/platform/network/HTTPHeaderMap.cpp
index c5197622282a2bf3a786e93de5516e27169c0347..a0644b5a7aad08e89a4b7a0a66fc4736ef71edd3 100644
--- a/Source/platform/network/HTTPHeaderMap.cpp
+++ b/Source/platform/network/HTTPHeaderMap.cpp
@@ -31,9 +31,6 @@
#include "config.h"
#include "platform/network/HTTPHeaderMap.h"
-
-using namespace std;
-
namespace blink {
HTTPHeaderMap::HTTPHeaderMap()
@@ -51,7 +48,7 @@ PassOwnPtr<CrossThreadHTTPHeaderMapData> HTTPHeaderMap::copyData() const
HTTPHeaderMap::const_iterator endIt = end();
for (HTTPHeaderMap::const_iterator it = begin(); it != endIt; ++it)
- data->uncheckedAppend(make_pair(it->key.string().isolatedCopy(), it->value.string().isolatedCopy()));
+ data->uncheckedAppend(std::make_pair(it->key.string().isolatedCopy(), it->value.string().isolatedCopy()));
return data.release();
}
« no previous file with comments | « Source/platform/mac/ThemeMac.mm ('k') | Source/platform/scheduler/SchedulerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698