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

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

Issue 1844053003: CREDENTIAL: Rework the integration with Fetch (1/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ? Created 4 years, 8 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
Index: third_party/WebKit/Source/modules/fetch/Body.h
diff --git a/third_party/WebKit/Source/modules/fetch/Body.h b/third_party/WebKit/Source/modules/fetch/Body.h
index 79064d06161d044025c1745a1e77fe8cd2ebf835..94a2041521cc35ad25bf13b565ab571c34c3b87d 100644
--- a/third_party/WebKit/Source/modules/fetch/Body.h
+++ b/third_party/WebKit/Source/modules/fetch/Body.h
@@ -59,10 +59,6 @@ public:
ActiveDOMObject::trace(visitor);
}
- // https://w3c.github.io/webappsec-credential-management/#monkey-patching-fetch-2
- void setOpaque() { m_opaque = true; }
- bool opaque() const { return m_opaque; }
-
private:
ReadableByteStream* body();
virtual String mimeType() const = 0;
@@ -72,8 +68,6 @@ private:
// an empty ScriptPromise if the consumption may proceed, and a
// ScriptPromise rejected with a TypeError if it ought to be blocked.
ScriptPromise rejectInvalidConsumption(ScriptState*);
-
- bool m_opaque;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698