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

Unified Diff: sandbox/win/src/handle_closer.h

Issue 1066213002: Fix illegal use of const in container contents to unbreak VS 2015. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/handle_closer.h
diff --git a/sandbox/win/src/handle_closer.h b/sandbox/win/src/handle_closer.h
index 60473b3ea00f0e25a28c6ec7c7b54005638817bc..fa656953ccc256db7f88bd516e329c8442fbde8c 100644
--- a/sandbox/win/src/handle_closer.h
+++ b/sandbox/win/src/handle_closer.h
@@ -19,8 +19,7 @@ namespace sandbox {
// This is a map of handle-types to names that we need to close in the
// target process. A null set means we need to close all handles of the
// given type.
-typedef std::map<const base::string16, std::set<const base::string16> >
- HandleMap;
+typedef std::map<const base::string16, std::set<base::string16> > HandleMap;
// Type and set of corresponding handle names to close.
struct HandleListEntry {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698