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

Unified Diff: Source/core/html/DOMFormData.h

Issue 1305183009: CREDENTIAL: Extend FormData opacity to created Request objects (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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: Source/core/html/DOMFormData.h
diff --git a/Source/core/html/DOMFormData.h b/Source/core/html/DOMFormData.h
index bb9d64455ed00d268c93feb950c035d43a556eef..ff3d2aa18ccc09f2ae7782ecae5d58e37981f993 100644
--- a/Source/core/html/DOMFormData.h
+++ b/Source/core/html/DOMFormData.h
@@ -75,6 +75,7 @@ public:
void set(const String& name, Blob*, const String& filename = String());
void makeOpaque() { m_opaque = true; }
+ bool opaque() const { return m_opaque; }
private:
explicit DOMFormData(const WTF::TextEncoding&);

Powered by Google App Engine
This is Rietveld 408576698