Index: webkit/glue/devtools/net_agent_impl.h |
=================================================================== |
--- webkit/glue/devtools/net_agent_impl.h (revision 12953) |
+++ webkit/glue/devtools/net_agent_impl.h (working copy) |
@@ -73,7 +73,12 @@ |
NetAgentDelegate* delegate_; |
WebCore::Document* document_; |
- HashMap<int, RefPtr<WebCore::DocumentLoader> > loaders_; |
+ typedef HashMap<int, DictionaryValue*, DefaultHash<int>::Hash, |
+ WTF::UnsignedWithZeroKeyHashTraits<int> > CachedResources; |
+ typedef HashMap<int, RefPtr<WebCore::DocumentLoader>, DefaultHash<int>::Hash, |
+ WTF::UnsignedWithZeroKeyHashTraits<int> > CachedLoaders; |
+ CachedResources pending_resources_; |
+ CachedLoaders loaders_; |
int last_cached_identifier_; |
DISALLOW_COPY_AND_ASSIGN(NetAgentImpl); |
}; |