OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/loader/resource/ImageResourceContent.h" | 5 #include "core/loader/resource/ImageResourceContent.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 | 8 |
9 #include "core/loader/resource/ImageResource.h" | 9 #include "core/loader/resource/ImageResource.h" |
10 #include "core/loader/resource/ImageResourceInfo.h" | 10 #include "core/loader/resource/ImageResourceInfo.h" |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
391 case ResourceStatus::kCached: | 391 case ResourceStatus::kCached: |
392 case ResourceStatus::kLoadError: | 392 case ResourceStatus::kLoadError: |
393 case ResourceStatus::kDecodeError: | 393 case ResourceStatus::kDecodeError: |
394 // Load start due to revalidation/reload. | 394 // Load start due to revalidation/reload. |
395 break; | 395 break; |
396 } | 396 } |
397 | 397 |
398 content_status_ = ResourceStatus::kPending; | 398 content_status_ = ResourceStatus::kPending; |
399 } | 399 } |
400 | 400 |
401 void ImageResourceContent::AsyncLoadCompleted(const blink::Image* image) { | |
402 if (image_ != image) | |
403 return; | |
404 CHECK_EQ(size_available_, Image::kSizeAvailableAndLoadingAsynchronously); | |
405 size_available_ = Image::kSizeAvailable; | |
406 UpdateToLoadedContentStatus(ResourceStatus::kCached); | |
407 NotifyObservers(kShouldNotifyFinish); | |
408 } | |
409 | |
401 ImageResourceContent::UpdateImageResult ImageResourceContent::UpdateImage( | 410 ImageResourceContent::UpdateImageResult ImageResourceContent::UpdateImage( |
402 PassRefPtr<SharedBuffer> data, | 411 PassRefPtr<SharedBuffer> data, |
403 ResourceStatus status, | 412 ResourceStatus status, |
404 UpdateImageOption update_image_option, | 413 UpdateImageOption update_image_option, |
405 bool all_data_received) { | 414 bool all_data_received) { |
406 TRACE_EVENT0("blink", "ImageResourceContent::updateImage"); | 415 TRACE_EVENT0("blink", "ImageResourceContent::updateImage"); |
407 | 416 |
408 #if DCHECK_IS_ON() | 417 #if DCHECK_IS_ON() |
409 DCHECK(!is_update_image_being_called_); | 418 DCHECK(!is_update_image_being_called_); |
410 AutoReset<bool> scope(&is_update_image_being_called_, true); | 419 AutoReset<bool> scope(&is_update_image_being_called_, true); |
(...skipping 20 matching lines...) Expand all Loading... | |
431 case kUpdateImage: | 440 case kUpdateImage: |
432 case kClearAndUpdateImage: | 441 case kClearAndUpdateImage: |
433 // Have the image update its data from its internal buffer. It will not do | 442 // Have the image update its data from its internal buffer. It will not do |
434 // anything now, but will delay decoding until queried for info (like size | 443 // anything now, but will delay decoding until queried for info (like size |
435 // or specific image frames). | 444 // or specific image frames). |
436 if (data) { | 445 if (data) { |
437 if (!image_) | 446 if (!image_) |
438 image_ = CreateImage(); | 447 image_ = CreateImage(); |
439 DCHECK(image_); | 448 DCHECK(image_); |
440 size_available_ = image_->SetData(std::move(data), all_data_received); | 449 size_available_ = image_->SetData(std::move(data), all_data_received); |
450 if (!all_data_received) { | |
451 DCHECK_NE(size_available_, | |
452 Image::kSizeAvailableAndLoadingAsynchronously); | |
453 } | |
441 } | 454 } |
442 | 455 |
443 // Go ahead and tell our observers to try to draw if we have either | 456 // Go ahead and tell our observers to try to draw if we have either |
444 // received all the data or the size is known. Each chunk from the network | 457 // received all the data or the size is known. Each chunk from the network |
445 // causes observers to repaint, which will force that chunk to decode. | 458 // causes observers to repaint, which will force that chunk to decode. |
446 if (size_available_ == Image::kSizeUnavailable && !all_data_received) | 459 if (size_available_ == Image::kSizeUnavailable && !all_data_received) |
447 return UpdateImageResult::kNoDecodeError; | 460 return UpdateImageResult::kNoDecodeError; |
448 | 461 |
449 if (info_->ShouldShowPlaceholder() && all_data_received) { | 462 if (info_->ShouldShowPlaceholder() && all_data_received) { |
450 if (image_ && !image_->IsNull()) { | 463 if (image_ && !image_->IsNull()) { |
451 IntSize dimensions = image_->Size(); | 464 IntSize dimensions = image_->Size(); |
452 ClearImage(); | 465 ClearImage(); |
453 image_ = PlaceholderImage::Create(this, dimensions); | 466 image_ = PlaceholderImage::Create(this, dimensions); |
454 } | 467 } |
455 } | 468 } |
456 | 469 |
457 if (!image_ || image_->IsNull()) { | 470 if (!image_ || image_->IsNull()) { |
458 ClearImage(); | 471 ClearImage(); |
459 return UpdateImageResult::kShouldDecodeError; | 472 return UpdateImageResult::kShouldDecodeError; |
460 } | 473 } |
461 break; | 474 break; |
462 } | 475 } |
463 | 476 |
464 // Notifies the observers. | 477 // Notifies the observers. |
465 // It would be nice to only redraw the decoded band of the image, but with the | 478 // It would be nice to only redraw the decoded band of the image, but with the |
466 // current design (decoding delayed until painting) that seems hard. | 479 // current design (decoding delayed until painting) that seems hard. |
467 | 480 // |
468 if (all_data_received) { | 481 // In the case of kSizeAvailableAndLoadingAsynchronously, we are waiting for |
482 // SVG image completion, and thus we notify observers of kDoNotNotifyFinish | |
483 // here, and will notify observers of finish later in AsyncLoadCompleted(). | |
484 if (all_data_received && | |
485 size_available_ != Image::kSizeAvailableAndLoadingAsynchronously) { | |
kouhei (in TOK)
2017/05/08 13:07:04
Can we add DCHECKs about the possible conditions h
hiroshige
2017/05/08 17:22:07
What kind of conditions?
(Added one DCHECK in the
| |
469 UpdateToLoadedContentStatus(status); | 486 UpdateToLoadedContentStatus(status); |
470 NotifyObservers(kShouldNotifyFinish); | 487 NotifyObservers(kShouldNotifyFinish); |
471 } else { | 488 } else { |
472 NotifyObservers(kDoNotNotifyFinish); | 489 NotifyObservers(kDoNotNotifyFinish); |
473 } | 490 } |
474 | 491 |
475 return UpdateImageResult::kNoDecodeError; | 492 return UpdateImageResult::kNoDecodeError; |
476 } | 493 } |
477 | 494 |
478 void ImageResourceContent::DecodedSizeChangedTo(const blink::Image* image, | 495 void ImageResourceContent::DecodedSizeChangedTo(const blink::Image* image, |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
594 | 611 |
595 const ResourceResponse& ImageResourceContent::GetResponse() const { | 612 const ResourceResponse& ImageResourceContent::GetResponse() const { |
596 return info_->GetResponse(); | 613 return info_->GetResponse(); |
597 } | 614 } |
598 | 615 |
599 const ResourceError& ImageResourceContent::GetResourceError() const { | 616 const ResourceError& ImageResourceContent::GetResourceError() const { |
600 return info_->GetResourceError(); | 617 return info_->GetResourceError(); |
601 } | 618 } |
602 | 619 |
603 } // namespace blink | 620 } // namespace blink |
OLD | NEW |