| Index: sky/engine/core/loader/FrameLoader.h
|
| diff --git a/sky/engine/core/loader/FrameLoader.h b/sky/engine/core/loader/FrameLoader.h
|
| index 71e2d30426264ba369d91702737775aee56db55c..dc6325e630f71a69d1c6f30516cba902d7f53f47 100644
|
| --- a/sky/engine/core/loader/FrameLoader.h
|
| +++ b/sky/engine/core/loader/FrameLoader.h
|
| @@ -32,7 +32,6 @@
|
| #ifndef SKY_ENGINE_CORE_LOADER_FRAMELOADER_H_
|
| #define SKY_ENGINE_CORE_LOADER_FRAMELOADER_H_
|
|
|
| -#include "sky/engine/core/fetch/ResourceLoaderOptions.h"
|
| #include "sky/engine/core/loader/FrameLoaderTypes.h"
|
| #include "sky/engine/platform/Timer.h"
|
| #include "sky/engine/platform/network/ResourceRequest.h"
|
| @@ -46,7 +45,6 @@ class Chrome;
|
| class DOMWrapperWorld;
|
| class Document;
|
| class Event;
|
| -class FetchContext;
|
| class Frame;
|
| class FrameLoaderClient;
|
| class LocalFrame;
|
| @@ -76,15 +74,11 @@ public:
|
| // FIXME: clear() is trying to do too many things. We should break it down into smaller functions.
|
| void clear();
|
|
|
| - FetchContext& fetchContext() const { return *m_fetchContext; }
|
| -
|
| void finishedParsing();
|
|
|
| private:
|
| LocalFrame* m_frame;
|
|
|
| - OwnPtr<FetchContext> m_fetchContext;
|
| -
|
| bool m_inStopAllLoaders;
|
| };
|
|
|
|
|