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

Unified Diff: Source/core/loader/DocumentLoader.h

Issue 1200043002: Revert of Oilpan: enable appcache + move DocumentLoader to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 | « Source/core/frame/LocalDOMWindow.cpp ('k') | Source/core/loader/DocumentLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/DocumentLoader.h
diff --git a/Source/core/loader/DocumentLoader.h b/Source/core/loader/DocumentLoader.h
index 759f7f979aa59120f0b5ad5a38908752c744d787..091b0f31e9b4e7ed1cba2e589aecb478449c75e5 100644
--- a/Source/core/loader/DocumentLoader.h
+++ b/Source/core/loader/DocumentLoader.h
@@ -48,7 +48,6 @@
#include "wtf/RefPtr.h"
namespace blink {
-
class ApplicationCacheHost;
class ResourceFetcher;
class DocumentInit;
@@ -58,18 +57,18 @@
class ResourceLoader;
class ThreadedDataReceiver;
- class CORE_EXPORT DocumentLoader : public RefCountedWillBeGarbageCollectedFinalized<DocumentLoader>, private RawResourceClient {
- WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(DocumentLoader);
+ class CORE_EXPORT DocumentLoader : public RefCounted<DocumentLoader>, private RawResourceClient {
+ WTF_MAKE_FAST_ALLOCATED(DocumentLoader);
public:
- static PassRefPtrWillBeRawPtr<DocumentLoader> create(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& data)
+ static PassRefPtr<DocumentLoader> create(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& data)
{
- return adoptRefWillBeNoop(new DocumentLoader(frame, request, data));
+ return adoptRef(new DocumentLoader(frame, request, data));
}
virtual ~DocumentLoader();
LocalFrame* frame() const { return m_frame; }
- virtual void detachFromFrame();
+ void detachFromFrame();
unsigned long mainResourceIdentifier() const;
@@ -142,8 +141,6 @@
void startPreload(Resource::Type, FetchRequest&);
- DECLARE_VIRTUAL_TRACE();
-
protected:
DocumentLoader(LocalFrame*, const ResourceRequest&, const SubstituteData&);
@@ -184,12 +181,12 @@
bool shouldContinueForResponse() const;
- RawPtrWillBeMember<LocalFrame> m_frame;
- RefPtrWillBeMember<ResourceFetcher> m_fetcher;
+ LocalFrame* m_frame;
+ RefPtrWillBePersistent<ResourceFetcher> m_fetcher;
ResourcePtr<RawResource> m_mainResource;
- RefPtrWillBeMember<DocumentWriter> m_writer;
+ RefPtrWillBePersistent<DocumentWriter> m_writer;
// A reference to actual request used to create the data source.
// The only part of this request that should change is the url, and
@@ -213,20 +210,20 @@
NavigationType m_navigationType;
- RefPtrWillBeMember<MHTMLArchive> m_archive;
+ RefPtrWillBePersistent<MHTMLArchive> m_archive;
bool m_loadingMainResource;
DocumentLoadTiming m_documentLoadTiming;
double m_timeOfLastDataReceived;
- PersistentWillBeMember<ApplicationCacheHost> m_applicationCacheHost;
+ friend class ApplicationCacheHost; // for substitute resource delivery
+ OwnPtrWillBePersistent<ApplicationCacheHost> m_applicationCacheHost;
RefPtr<ContentSecurityPolicy> m_contentSecurityPolicy;
ClientHintsPreferences m_clientHintsPreferences;
InitialScrollState m_initialScrollState;
};
-
-} // namespace blink
+}
#endif // DocumentLoader_h
« no previous file with comments | « Source/core/frame/LocalDOMWindow.cpp ('k') | Source/core/loader/DocumentLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698