Commit facc326c authored by tyoshino's avatar tyoshino Committed by Commit bot

Make the FetchManager constructor private

R=yhirano@chromium.org
BUG=none

Review-Url: https://codereview.chromium.org/2625573003
Cr-Commit-Position: refs/heads/master@{#442867}
parent 6ab8be24
......@@ -21,13 +21,14 @@ class FetchManager final : public GarbageCollected<FetchManager>,
public:
static FetchManager* create(ExecutionContext*);
explicit FetchManager(ExecutionContext*);
ScriptPromise fetch(ScriptState*, FetchRequestData*);
void contextDestroyed() override;
DECLARE_TRACE();
private:
explicit FetchManager(ExecutionContext*);
class Loader;
// Removes loader from |m_loaders|.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment