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

Unified Diff: sky/engine/core/dom/Document.h

Issue 1214513003: Remove references into sky/engine/core/fetch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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 | « sky/engine/core/dom/DOMURL.cpp ('k') | sky/engine/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/Document.h
diff --git a/sky/engine/core/dom/Document.h b/sky/engine/core/dom/Document.h
index eb5b5eac22f9b46b6be1764cdcf63f81a3eb07c1..68c5f570b1cc835d249b2c77605103dbd106e4e6 100644
--- a/sky/engine/core/dom/Document.h
+++ b/sky/engine/core/dom/Document.h
@@ -41,7 +41,6 @@
#include "sky/engine/core/dom/TextLinkColors.h"
#include "sky/engine/core/dom/TreeScope.h"
#include "sky/engine/core/dom/UserActionElementSet.h"
-#include "sky/engine/core/fetch/ResourceClient.h"
#include "sky/engine/core/loader/DocumentLoadTiming.h"
#include "sky/engine/core/page/FocusType.h"
#include "sky/engine/core/page/PageVisibilityState.h"
@@ -114,7 +113,7 @@ typedef int ExceptionCode;
class Document;
class Document : public ContainerNode, public TreeScope, public ExecutionContext, public ExecutionContextClient
- , public DocumentSupplementable, public LifecycleContext<Document>, public ResourceClient {
+ , public DocumentSupplementable, public LifecycleContext<Document> {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtr<Document> create(const DocumentInit& initializer = DocumentInit())
@@ -225,8 +224,6 @@ public:
void updateDistributionForNodeIfNeeded(Node*);
- ResourceFetcher* fetcher() { return m_fetcher.get(); }
-
virtual void attach(const AttachContext& = AttachContext()) override;
virtual void detach(const AttachContext& = AttachContext()) override;
void prepareForDestruction();
@@ -560,7 +557,6 @@ private:
LocalFrame* m_frame;
RawPtr<LocalDOMWindow> m_domWindow;
- RefPtr<ResourceFetcher> m_fetcher;
unsigned m_activeParserCount;
// Document URLs.
« no previous file with comments | « sky/engine/core/dom/DOMURL.cpp ('k') | sky/engine/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698