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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_GLUE_DEVTOOLS_NET_AGENT_IMPL_H_ 5 #ifndef WEBKIT_GLUE_DEVTOOLS_NET_AGENT_IMPL_H_
6 #define WEBKIT_GLUE_DEVTOOLS_NET_AGENT_IMPL_H_ 6 #define WEBKIT_GLUE_DEVTOOLS_NET_AGENT_IMPL_H_
7 7
8 #include <wtf/HashMap.h> 8 #include <wtf/HashMap.h>
9 #include <wtf/RefCounted.h> 9 #include <wtf/RefCounted.h>
10 #include <wtf/RefPtr.h> 10 #include <wtf/RefPtr.h>
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 const WebCore::ResourceRequest& request, 66 const WebCore::ResourceRequest& request,
67 const WebCore::ResourceResponse& response, 67 const WebCore::ResourceResponse& response,
68 int length); 68 int length);
69 69
70 private: 70 private:
71 // Serializes headers map into a value. 71 // Serializes headers map into a value.
72 Value* BuildValueForHeaders(const WebCore::HTTPHeaderMap& headers); 72 Value* BuildValueForHeaders(const WebCore::HTTPHeaderMap& headers);
73 73
74 NetAgentDelegate* delegate_; 74 NetAgentDelegate* delegate_;
75 WebCore::Document* document_; 75 WebCore::Document* document_;
76 HashMap<int, RefPtr<WebCore::DocumentLoader> > loaders_; 76 typedef HashMap<int, DictionaryValue*, DefaultHash<int>::Hash,
77 WTF::UnsignedWithZeroKeyHashTraits<int> > CachedResources;
78 typedef HashMap<int, RefPtr<WebCore::DocumentLoader>, DefaultHash<int>::Hash,
79 WTF::UnsignedWithZeroKeyHashTraits<int> > CachedLoaders;
80 CachedResources pending_resources_;
81 CachedLoaders loaders_;
77 int last_cached_identifier_; 82 int last_cached_identifier_;
78 DISALLOW_COPY_AND_ASSIGN(NetAgentImpl); 83 DISALLOW_COPY_AND_ASSIGN(NetAgentImpl);
79 }; 84 };
80 85
81 #endif // WEBKIT_GLUE_DEVTOOLS_NET_AGENT_IMPL_H_ 86 #endif // WEBKIT_GLUE_DEVTOOLS_NET_AGENT_IMPL_H_
OLDNEW
« 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