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

Unified Diff: sky/engine/core/loader/FrameLoader.cpp

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/loader/FrameLoader.h ('k') | sky/engine/core/loader/ImageLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/loader/FrameLoader.cpp
diff --git a/sky/engine/core/loader/FrameLoader.cpp b/sky/engine/core/loader/FrameLoader.cpp
index db3c884789c70d0ea8cf853fef184a14b68eea50..9d8d8e5f95871dee4645ff70a672e474ba33bab0 100644
--- a/sky/engine/core/loader/FrameLoader.cpp
+++ b/sky/engine/core/loader/FrameLoader.cpp
@@ -39,9 +39,6 @@
#include "sky/engine/core/editing/Editor.h"
#include "sky/engine/core/editing/UndoStack.h"
#include "sky/engine/core/events/PageTransitionEvent.h"
-#include "sky/engine/core/fetch/FetchContext.h"
-#include "sky/engine/core/fetch/ResourceFetcher.h"
-#include "sky/engine/core/fetch/ResourceLoader.h"
#include "sky/engine/core/frame/FrameHost.h"
#include "sky/engine/core/frame/FrameView.h"
#include "sky/engine/core/frame/LocalDOMWindow.h"
@@ -49,7 +46,6 @@
#include "sky/engine/core/frame/Settings.h"
#include "sky/engine/core/inspector/ConsoleMessage.h"
#include "sky/engine/core/loader/DocumentLoadTiming.h"
-#include "sky/engine/core/loader/FrameFetchContext.h"
#include "sky/engine/core/loader/FrameLoaderClient.h"
#include "sky/engine/core/loader/UniqueIdentifier.h"
#include "sky/engine/core/page/ChromeClient.h"
@@ -71,7 +67,6 @@ namespace blink {
FrameLoader::FrameLoader(LocalFrame* frame)
: m_frame(frame)
- , m_fetchContext(FrameFetchContext::create(frame))
, m_inStopAllLoaders(false)
{
}
@@ -153,8 +148,6 @@ void FrameLoader::stopAllLoaders()
if (m_frame->document()->parsing())
stopLoading();
- m_frame->document()->fetcher()->stopFetching();
-
m_inStopAllLoaders = false;
}
« no previous file with comments | « sky/engine/core/loader/FrameLoader.h ('k') | sky/engine/core/loader/ImageLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698