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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchManager.h

Issue 2625573003: Make the FetchManager constructor private (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/fetch/FetchManager.h
diff --git a/third_party/WebKit/Source/modules/fetch/FetchManager.h b/third_party/WebKit/Source/modules/fetch/FetchManager.h
index ac06ecb4ff24bbcbe5bddec2fd971867d1addef2..8e48bab3aae37dc9661e4251559339722775c815 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchManager.h
+++ b/third_party/WebKit/Source/modules/fetch/FetchManager.h
@@ -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|.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698