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

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

Issue 1446963002: CREDENTIAL: Teach Fetch to handle PasswordCredential objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@opaque
Patch Set: webexposed Created 5 years, 1 month 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 | « third_party/WebKit/Source/modules/fetch/Body.h ('k') | third_party/WebKit/Source/modules/fetch/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/fetch/Body.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/Body.cpp b/third_party/WebKit/Source/modules/fetch/Body.cpp
index 449777c5959bc57132e6547134781a49a922669c..3e489a74238ec647a95d806020db87f2bc3fe303 100644
--- a/third_party/WebKit/Source/modules/fetch/Body.cpp
+++ b/third_party/WebKit/Source/modules/fetch/Body.cpp
@@ -104,8 +104,9 @@ public:
ScriptPromise Body::arrayBuffer(ScriptState* scriptState)
{
- if (bodyUsed())
- return ScriptPromise::reject(scriptState, V8ThrowException::createTypeError(scriptState->isolate(), "Already read"));
+ ScriptPromise promise = rejectInvalidConsumption(scriptState);
+ if (!promise.isEmpty())
+ return promise;
// When the main thread sends a V8::TerminateExecution() signal to a worker
// thread, any V8 API on the worker thread starts returning an empty
@@ -117,7 +118,7 @@ ScriptPromise Body::arrayBuffer(ScriptState* scriptState)
return ScriptPromise();
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
- ScriptPromise promise = resolver->promise();
+ promise = resolver->promise();
if (bodyBuffer()) {
bodyBuffer()->startLoading(scriptState->executionContext(), FetchDataLoader::createLoaderAsArrayBuffer(), new BodyArrayBufferConsumer(resolver));
} else {
@@ -128,15 +129,16 @@ ScriptPromise Body::arrayBuffer(ScriptState* scriptState)
ScriptPromise Body::blob(ScriptState* scriptState)
{
- if (bodyUsed())
- return ScriptPromise::reject(scriptState, V8ThrowException::createTypeError(scriptState->isolate(), "Already read"));
+ ScriptPromise promise = rejectInvalidConsumption(scriptState);
+ if (!promise.isEmpty())
+ return promise;
// See above comment.
if (!scriptState->executionContext())
return ScriptPromise();
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
- ScriptPromise promise = resolver->promise();
+ promise = resolver->promise();
if (bodyBuffer()) {
bodyBuffer()->startLoading(scriptState->executionContext(), FetchDataLoader::createLoaderAsBlobHandle(mimeType()), new BodyBlobConsumer(resolver));
} else {
@@ -150,15 +152,16 @@ ScriptPromise Body::blob(ScriptState* scriptState)
ScriptPromise Body::json(ScriptState* scriptState)
{
- if (bodyUsed())
- return ScriptPromise::reject(scriptState, V8ThrowException::createTypeError(scriptState->isolate(), "Already read"));
+ ScriptPromise promise = rejectInvalidConsumption(scriptState);
+ if (!promise.isEmpty())
+ return promise;
// See above comment.
if (!scriptState->executionContext())
return ScriptPromise();
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
- ScriptPromise promise = resolver->promise();
+ promise = resolver->promise();
if (bodyBuffer()) {
bodyBuffer()->startLoading(scriptState->executionContext(), FetchDataLoader::createLoaderAsString(), new BodyJsonConsumer(resolver));
} else {
@@ -169,15 +172,16 @@ ScriptPromise Body::json(ScriptState* scriptState)
ScriptPromise Body::text(ScriptState* scriptState)
{
- if (bodyUsed())
- return ScriptPromise::reject(scriptState, V8ThrowException::createTypeError(scriptState->isolate(), "Already read"));
+ ScriptPromise promise = rejectInvalidConsumption(scriptState);
+ if (!promise.isEmpty())
+ return promise;
// See above comment.
if (!scriptState->executionContext())
return ScriptPromise();
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
- ScriptPromise promise = resolver->promise();
+ promise = resolver->promise();
if (bodyBuffer()) {
bodyBuffer()->startLoading(scriptState->executionContext(), FetchDataLoader::createLoaderAsString(), new BodyTextConsumer(resolver));
} else {
@@ -206,9 +210,18 @@ bool Body::hasPendingActivity() const
return bodyBuffer()->hasPendingActivity();
}
-Body::Body(ExecutionContext* context) : ActiveDOMObject(context), m_bodyPassed(false)
+Body::Body(ExecutionContext* context) : ActiveDOMObject(context), m_bodyPassed(false), m_opaque(false)
{
suspendIfNeeded();
}
+ScriptPromise Body::rejectInvalidConsumption(ScriptState* scriptState)
+{
+ if (m_opaque)
+ return ScriptPromise::reject(scriptState, V8ThrowException::createTypeError(scriptState->isolate(), "The body is opaque."));
+ if (bodyUsed())
+ return ScriptPromise::reject(scriptState, V8ThrowException::createTypeError(scriptState->isolate(), "Already read"));
+ return ScriptPromise();
+}
+
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/Body.h ('k') | third_party/WebKit/Source/modules/fetch/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698