Commit cef99efc authored by polina@google.com's avatar polina@google.com

Comment out broken CHECK in ppapi/ppb_url_loader_impl.cc.

BUG=70347
TESTED=bots + used nacl with ppapi_geturl that uncovered the crash

Review URL: http://codereview.chromium.org/6338014

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72229 0039d316-1c4b-4281-b951-d872f2087c98
parent ebbad604
...@@ -467,7 +467,9 @@ void PPB_URLLoader_Impl::RegisterCallback(PP_CompletionCallback callback) { ...@@ -467,7 +467,9 @@ void PPB_URLLoader_Impl::RegisterCallback(PP_CompletionCallback callback) {
void PPB_URLLoader_Impl::RunCallback(int32_t result) { void PPB_URLLoader_Impl::RunCallback(int32_t result) {
// This may be null only when this is a main document loader. // This may be null only when this is a main document loader.
if (!pending_callback_.get()) { if (!pending_callback_.get()) {
CHECK(main_document_loader_); // TODO(viettrungluu): put this CHECK back when the callback race condition
// is fixed: http://code.google.com/p/chromium/issues/detail?id=70347.
//CHECK(main_document_loader_);
return; return;
} }
...@@ -541,4 +543,3 @@ bool PPB_URLLoader_Impl::RecordUploadProgress() const { ...@@ -541,4 +543,3 @@ bool PPB_URLLoader_Impl::RecordUploadProgress() const {
} // namespace ppapi } // namespace ppapi
} // namespace webkit } // namespace webkit
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment