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

Unified Diff: sandbox/win/src/sharedmem_ipc_server.cc

Issue 2234743002: sandbox: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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 | « sandbox/win/src/broker_services.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/sharedmem_ipc_server.cc
diff --git a/sandbox/win/src/sharedmem_ipc_server.cc b/sandbox/win/src/sharedmem_ipc_server.cc
index 672abfacb7a61726bdf925b34152cea2f46cbc0d..fbe85f176afdcbbe0ecfc7c1fe02a0354e0011eb 100644
--- a/sandbox/win/src/sharedmem_ipc_server.cc
+++ b/sandbox/win/src/sharedmem_ipc_server.cc
@@ -60,7 +60,7 @@ SharedMemIPCServer::~SharedMemIPCServer() {
// Better to leak than to crash.
return;
}
- STLDeleteElements(&server_contexts_);
+ base::STLDeleteElements(&server_contexts_);
if (client_control_)
::UnmapViewOfFile(client_control_);
« no previous file with comments | « sandbox/win/src/broker_services.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698