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

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

Issue 2019903002: Turn ResourceLoaderSet into a part object. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/fetch/ResourceFetcher.h
diff --git a/third_party/WebKit/Source/core/fetch/ResourceFetcher.h b/third_party/WebKit/Source/core/fetch/ResourceFetcher.h
index 5347ba88ce67dfa3389edcb910ea45a1d696591c..1e970d19b2f3f8a2fe2f2b0af66db06ea55aaea4 100644
--- a/third_party/WebKit/Source/core/fetch/ResourceFetcher.h
+++ b/third_party/WebKit/Source/core/fetch/ResourceFetcher.h
@@ -33,6 +33,7 @@
#include "core/fetch/FetchRequest.h"
#include "core/fetch/Resource.h"
#include "core/fetch/ResourceLoaderOptions.h"
+#include "core/fetch/ResourceLoaderSet.h"
#include "core/fetch/SubstituteData.h"
#include "platform/Timer.h"
#include "platform/network/ResourceError.h"
@@ -55,7 +56,6 @@ class ScriptResource;
class XSLStyleSheetResource;
class KURL;
class ResourceTimingInfo;
-class ResourceLoaderSet;
// The ResourceFetcher provides a per-context interface to the MemoryCache
// and enforces a bunch of security checks and rules for resource revalidation.
@@ -193,8 +193,8 @@ private:
Vector<OwnPtr<ResourceTimingInfo>> m_scheduledResourceTimingReports;
- Member<ResourceLoaderSet> m_loaders;
- Member<ResourceLoaderSet> m_nonBlockingLoaders;
+ ResourceLoaderSet m_loaders;
+ ResourceLoaderSet m_nonBlockingLoaders;
// Used in hit rate histograms.
class DeadResourceStatsRecorder {
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698