Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Build fix.
* Modules/fetch/FetchBodyOwner.cpp:
(WebCore::FetchBodyOwner::loadedBlobAsText):



Canonical link: https://commits.webkit.org/173551@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@198134 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
aproskuryakov committed Mar 14, 2016
1 parent 56eb35d commit e90f39b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Source/WebCore/ChangeLog
@@ -1,3 +1,10 @@
2016-03-14 Alexey Proskuryakov <ap@apple.com>

Build fix.

* Modules/fetch/FetchBodyOwner.cpp:
(WebCore::FetchBodyOwner::loadedBlobAsText):

2016-03-14 Youenn Fablet <youenn.fablet@crf.canon.fr>

[Fetch API] Implement data resolution for blob stored in Body
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/Modules/fetch/FetchBodyOwner.cpp
Expand Up @@ -69,7 +69,7 @@ void FetchBodyOwner::loadBlob(Blob& blob, FetchLoader::Type type)

void FetchBodyOwner::loadedBlobAsText(String&& text)
{
ASSERT(*scriptExecutionContext());
ASSERT(scriptExecutionContext());

m_body.loadedAsText(*scriptExecutionContext(), WTFMove(text));
}
Expand Down

0 comments on commit e90f39b

Please sign in to comment.