| Index: chrome/browser/thumbnails/thumbnail_service_impl.cc
|
| diff --git a/chrome/browser/thumbnails/thumbnail_service_impl.cc b/chrome/browser/thumbnails/thumbnail_service_impl.cc
|
| index d584ecddca8902315558621679a54cfa750f6cbe..117d730e3402581d78999ab79948c393cf622fba 100644
|
| --- a/chrome/browser/thumbnails/thumbnail_service_impl.cc
|
| +++ b/chrome/browser/thumbnails/thumbnail_service_impl.cc
|
| @@ -79,7 +79,7 @@ bool ThumbnailServiceImpl::ShouldAcquirePageThumbnail(const GURL& url) {
|
| if (!HistoryService::CanAddURL(url))
|
| return false;
|
| // Skip if the top sites list is full, and the URL is not known.
|
| - if (local_ptr->IsFull() && !local_ptr->IsKnownURL(url))
|
| + if (local_ptr->IsNonForcedFull() && !local_ptr->IsKnownURL(url))
|
| return false;
|
| // Skip if we don't have to udpate the existing thumbnail.
|
| ThumbnailScore current_score;
|
|
|