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

Unified Diff: third_party/WebKit/Source/core/fetch/FetchContext.h

Issue 2578983002: Loading: move V8DOMActivityLogger dependency from core/fetch (Closed)
Patch Set: Created 4 years 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
Index: third_party/WebKit/Source/core/fetch/FetchContext.h
diff --git a/third_party/WebKit/Source/core/fetch/FetchContext.h b/third_party/WebKit/Source/core/fetch/FetchContext.h
index 818fef96ec6633237ddeb67de308e493ff3a064a..14613ebb303812376dce99631cbc45ded17e75ce 100644
--- a/third_party/WebKit/Source/core/fetch/FetchContext.h
+++ b/third_party/WebKit/Source/core/fetch/FetchContext.h
@@ -41,6 +41,12 @@
#include "platform/network/ResourceRequest.h"
#include "wtf/Noncopyable.h"
+namespace wtf {
yhirano 2016/12/19 11:44:46 wtf/Forward.h
Takashi Toyoshima 2016/12/19 12:58:54 Done.
+
+class AtomicString;
+
+} // namespace wtf
+
namespace blink {
class KURL;
@@ -124,7 +130,9 @@ class CORE_EXPORT FetchContext
// load actually begins.
virtual void willStartLoadingResource(unsigned long identifier,
ResourceRequest&,
- Resource::Type);
+ Resource::Type,
+ const AtomicString& fetchInitiatorName,
+ bool forPreload);
virtual void didLoadResource(Resource*);
virtual void addResourceTiming(const ResourceTimingInfo&);

Powered by Google App Engine
This is Rietveld 408576698