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

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

Issue 2557023002: Remove FetchManager::m_isStopped (Closed)
Patch Set: temp Created 4 years 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
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 845ddf3084b33e5d02d4558dc20fab22c19ccd5e..ac06ecb4ff24bbcbe5bddec2fd971867d1addef2 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchManager.h
+++ b/third_party/WebKit/Source/modules/fetch/FetchManager.h
@@ -24,7 +24,6 @@ class FetchManager final : public GarbageCollected<FetchManager>,
explicit FetchManager(ExecutionContext*);
ScriptPromise fetch(ScriptState*, FetchRequestData*);
void contextDestroyed() override;
- bool isStopped() const { return m_isStopped; }
DECLARE_TRACE();
@@ -35,7 +34,6 @@ class FetchManager final : public GarbageCollected<FetchManager>,
void onLoaderFinished(Loader*);
HeapHashSet<Member<Loader>> m_loaders;
- bool m_isStopped;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698