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

Unified Diff: webkit/glue/devtools/net_agent_impl.h

Issue 56149: DevTools: add support for main resource load tracking. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « webkit/glue/devtools/js/net_agent.js ('k') | webkit/glue/devtools/net_agent_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « webkit/glue/devtools/js/net_agent.js ('k') | webkit/glue/devtools/net_agent_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698