Roll src/third_party/WebKit bf18a82:a9cee16 (svn 185297:185304)
[chromium-blink-merge.git] / chrome / browser / thumbnails / thumbnail_service_impl.cc
blob8f572d39b14994962831bcaef78b10eaf32e672e
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"
17 #include "url/gurl.h"
19 using content::BrowserThread;
21 namespace {
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())
30 return false;
32 return CommandLine::ForCurrentProcess()->HasSwitch(
33 switches::kEnableThumbnailRetargeting);
36 void AddForcedURLOnUIThread(scoped_refptr<history::TopSites> top_sites,
37 const GURL& url) {
38 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
40 if (top_sites.get() != NULL)
41 top_sites->AddForcedURL(url, base::Time::Now());
44 } // namespace
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)
60 return false;
62 return local_ptr->SetPageThumbnail(context.url, thumbnail, context.score);
65 bool ThumbnailServiceImpl::GetPageThumbnail(
66 const GURL& url,
67 bool prefix_match,
68 scoped_refptr<base::RefCountedMemory>* bytes) {
69 scoped_refptr<history::TopSites> local_ptr(top_sites_);
70 if (local_ptr.get() == NULL)
71 return false;
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)
79 return;
81 // Adding
82 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
83 base::Bind(AddForcedURLOnUIThread, local_ptr, url));
86 ThumbnailingAlgorithm* ThumbnailServiceImpl::GetThumbnailingAlgorithm()
87 const {
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)
98 return false;
100 // Skip if the given URL is not appropriate for history.
101 if (!HistoryService::CanAddURL(url))
102 return false;
103 // Skip if the top sites list is full, and the URL is not known.
104 if (local_ptr->IsNonForcedFull() && !local_ptr->IsKnownURL(url))
105 return false;
106 // Skip if we don't have to udpate the existing thumbnail.
107 ThumbnailScore current_score;
108 if (local_ptr->GetPageThumbnailScore(url, &current_score) &&
109 !current_score.ShouldConsiderUpdating())
110 return false;
111 // Skip if we don't have to udpate the temporary thumbnail (i.e. the one
112 // not yet saved).
113 ThumbnailScore temporary_score;
114 if (local_ptr->GetTemporaryPageThumbnailScore(url, &temporary_score) &&
115 !temporary_score.ShouldConsiderUpdating())
116 return false;
118 return true;
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
124 // reference.
125 top_sites_ = NULL;
128 } // namespace thumbnails