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

Unified Diff: base/id_map.h

Issue 259033002: [Android] Implement renderer side of Gin Java Bridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed, test added Created 6 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 | content/content_renderer.gypi » ('j') | content/renderer/java/gin_java_bridge_dispatcher.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | content/renderer/java/gin_java_bridge_dispatcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698