1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/thumbnails/thumbnail_service_impl.h"
7 #include "base/command_line.h"
8 #include "base/memory/ref_counted_memory.h"
9 #include "base/time/time.h"
10 #include "chrome/browser/history/history_service.h"
11 #include "chrome/browser/thumbnails/content_based_thumbnailing_algorithm.h"
12 #include "chrome/browser/thumbnails/simple_thumbnail_crop.h"
13 #include "chrome/browser/thumbnails/thumbnailing_context.h"
14 #include "chrome/common/chrome_switches.h"
15 #include "components/search/search.h"
16 #include "content/public/browser/browser_thread.h"
19 using content::BrowserThread
;
23 // The thumbnail size in DIP.
24 const int kThumbnailWidth
= 212;
25 const int kThumbnailHeight
= 142;
27 // True if thumbnail retargeting feature is enabled (Finch/flags).
28 bool IsThumbnailRetargetingEnabled() {
29 if (!chrome::IsInstantExtendedAPIEnabled())
32 return CommandLine::ForCurrentProcess()->HasSwitch(
33 switches::kEnableThumbnailRetargeting
);
36 void AddForcedURLOnUIThread(scoped_refptr
<history::TopSites
> top_sites
,
38 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
40 if (top_sites
.get() != NULL
)
41 top_sites
->AddForcedURL(url
, base::Time::Now());
46 namespace thumbnails
{
48 ThumbnailServiceImpl::ThumbnailServiceImpl(Profile
* profile
)
49 : top_sites_(profile
->GetTopSites()),
50 use_thumbnail_retargeting_(IsThumbnailRetargetingEnabled()) {
53 ThumbnailServiceImpl::~ThumbnailServiceImpl() {
56 bool ThumbnailServiceImpl::SetPageThumbnail(const ThumbnailingContext
& context
,
57 const gfx::Image
& thumbnail
) {
58 scoped_refptr
<history::TopSites
> local_ptr(top_sites_
);
59 if (local_ptr
.get() == NULL
)
62 return local_ptr
->SetPageThumbnail(context
.url
, thumbnail
, context
.score
);
65 bool ThumbnailServiceImpl::GetPageThumbnail(
68 scoped_refptr
<base::RefCountedMemory
>* bytes
) {
69 scoped_refptr
<history::TopSites
> local_ptr(top_sites_
);
70 if (local_ptr
.get() == NULL
)
73 return local_ptr
->GetPageThumbnail(url
, prefix_match
, bytes
);
76 void ThumbnailServiceImpl::AddForcedURL(const GURL
& url
) {
77 scoped_refptr
<history::TopSites
> local_ptr(top_sites_
);
78 if (local_ptr
.get() == NULL
)
82 BrowserThread::PostTask(BrowserThread::UI
, FROM_HERE
,
83 base::Bind(AddForcedURLOnUIThread
, local_ptr
, url
));
86 ThumbnailingAlgorithm
* ThumbnailServiceImpl::GetThumbnailingAlgorithm()
88 const gfx::Size
thumbnail_size(kThumbnailWidth
, kThumbnailHeight
);
89 if (use_thumbnail_retargeting_
)
90 return new ContentBasedThumbnailingAlgorithm(thumbnail_size
);
91 return new SimpleThumbnailCrop(thumbnail_size
);
94 bool ThumbnailServiceImpl::ShouldAcquirePageThumbnail(const GURL
& url
) {
95 scoped_refptr
<history::TopSites
> local_ptr(top_sites_
);
97 if (local_ptr
.get() == NULL
)
100 // Skip if the given URL is not appropriate for history.
101 if (!HistoryService::CanAddURL(url
))
103 // Skip if the top sites list is full, and the URL is not known.
104 if (local_ptr
->IsNonForcedFull() && !local_ptr
->IsKnownURL(url
))
106 // Skip if we don't have to udpate the existing thumbnail.
107 ThumbnailScore current_score
;
108 if (local_ptr
->GetPageThumbnailScore(url
, ¤t_score
) &&
109 !current_score
.ShouldConsiderUpdating())
111 // Skip if we don't have to udpate the temporary thumbnail (i.e. the one
113 ThumbnailScore temporary_score
;
114 if (local_ptr
->GetTemporaryPageThumbnailScore(url
, &temporary_score
) &&
115 !temporary_score
.ShouldConsiderUpdating())
121 void ThumbnailServiceImpl::ShutdownOnUIThread() {
122 // Since each call uses its own scoped_refptr, we can just clear the reference
123 // here by assigning null. If another call is completed, it added its own
128 } // namespace thumbnails