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

Unified Diff: sandbox/linux/seccomp/maps.h

Issue 1294001: Make the seccomp sandbox compatible with tcmalloc:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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: sandbox/linux/seccomp/maps.h
===================================================================
--- sandbox/linux/seccomp/maps.h (revision 42483)
+++ sandbox/linux/seccomp/maps.h (working copy)
@@ -37,7 +37,8 @@
// The key is a unique combination of device number, inode number, and
// file name. It should be treated as opaque.
typedef std::map<string, Library, std::less<string>,
- SystemAllocator<string> > LibraryMap;
+ SystemAllocator<std::pair<const string,
+ Library> > > LibraryMap;
friend class Iterator;
class Iterator {
friend class Maps;

Powered by Google App Engine
This is Rietveld 408576698