Index: base/id_map.h |
diff --git a/base/id_map.h b/base/id_map.h |
index 27098d29768404f6bae9b87372cf3ef03c857cb6..1c2ddb65345c8c531855735aa4bdddd247f5b375 100644 |
--- a/base/id_map.h |
+++ b/base/id_map.h |
@@ -32,8 +32,9 @@ enum IDMapOwnershipSemantics { |
// ownership semantics are set to own because pointers will leak. |
template<typename T, IDMapOwnershipSemantics OS = IDMapExternalPointer> |
class IDMap : public base::NonThreadSafe { |
- private: |
+ public: |
typedef int32 KeyType; |
jochen (gone - plz use gerrit)
2014/05/05 10:55:49
nit. empty line after this line
mnaganov (inactive)
2014/05/06 10:54:15
Done.
|
+ private: |
typedef base::hash_map<KeyType, T*> HashTable; |
public: |