Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Side by Side Diff: chrome/browser/ui/webui/ntp/thumbnail_source.cc

Issue 23477033: Implementing URL prefix match for history thumbnail cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Replacing ASSERT_TRUE() << ... to NOTREACHED() << ... Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/webui/ntp/thumbnail_source.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 "chrome/browser/ui/webui/ntp/thumbnail_source.h" 5 #include "chrome/browser/ui/webui/ntp/thumbnail_source.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/memory/ref_counted_memory.h" 8 #include "base/memory/ref_counted_memory.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/search/instant_io_context.h" 11 #include "chrome/browser/search/instant_io_context.h"
12 #include "chrome/browser/thumbnails/thumbnail_service.h" 12 #include "chrome/browser/thumbnails/thumbnail_service.h"
13 #include "chrome/browser/thumbnails/thumbnail_service_factory.h" 13 #include "chrome/browser/thumbnails/thumbnail_service_factory.h"
14 #include "chrome/common/url_constants.h" 14 #include "chrome/common/url_constants.h"
15 #include "grit/theme_resources.h" 15 #include "grit/theme_resources.h"
16 #include "net/url_request/url_request.h" 16 #include "net/url_request/url_request.h"
17 #include "ui/base/resource/resource_bundle.h" 17 #include "ui/base/resource/resource_bundle.h"
18 #include "url/gurl.h" 18 #include "url/gurl.h"
19 19
20 using content::BrowserThread; 20 using content::BrowserThread;
21 21
22 // Set ThumbnailService now as Profile isn't thread safe. 22 // Set ThumbnailService now as Profile isn't thread safe.
23 ThumbnailSource::ThumbnailSource(Profile* profile) 23 ThumbnailSource::ThumbnailSource(Profile* profile, bool prefix_match)
24 : thumbnail_service_(ThumbnailServiceFactory::GetForProfile(profile)), 24 : thumbnail_service_(ThumbnailServiceFactory::GetForProfile(profile)),
25 profile_(profile) { 25 profile_(profile),
26 prefix_match_(prefix_match) {
26 } 27 }
27 28
28 ThumbnailSource::~ThumbnailSource() { 29 ThumbnailSource::~ThumbnailSource() {
29 } 30 }
30 31
31 std::string ThumbnailSource::GetSource() const { 32 std::string ThumbnailSource::GetSource() const {
32 return chrome::kChromeUIThumbnailHost; 33 return prefix_match_ ?
34 chrome::kChromeUIThumbnailHost2 : chrome::kChromeUIThumbnailHost;
33 } 35 }
34 36
35 void ThumbnailSource::StartDataRequest( 37 void ThumbnailSource::StartDataRequest(
36 const std::string& path, 38 const std::string& path,
37 int render_process_id, 39 int render_process_id,
38 int render_view_id, 40 int render_view_id,
39 const content::URLDataSource::GotDataCallback& callback) { 41 const content::URLDataSource::GotDataCallback& callback) {
40 scoped_refptr<base::RefCountedMemory> data; 42 scoped_refptr<base::RefCountedMemory> data;
41 if (thumbnail_service_->GetPageThumbnail(GURL(path), &data)) { 43 if (thumbnail_service_->GetPageThumbnail(GURL(path), prefix_match_, &data)) {
42 // We have the thumbnail. 44 // We have the thumbnail.
43 callback.Run(data.get()); 45 callback.Run(data.get());
44 } else { 46 } else {
45 callback.Run(default_thumbnail_.get()); 47 callback.Run(default_thumbnail_.get());
46 } 48 }
47 } 49 }
48 50
49 std::string ThumbnailSource::GetMimeType(const std::string&) const { 51 std::string ThumbnailSource::GetMimeType(const std::string&) const {
50 // We need to explicitly return a mime type, otherwise if the user tries to 52 // We need to explicitly return a mime type, otherwise if the user tries to
51 // drag the image they get no extension. 53 // drag the image they get no extension.
52 return "image/png"; 54 return "image/png";
53 } 55 }
54 56
55 base::MessageLoop* ThumbnailSource::MessageLoopForRequestPath( 57 base::MessageLoop* ThumbnailSource::MessageLoopForRequestPath(
56 const std::string& path) const { 58 const std::string& path) const {
57 // TopSites can be accessed from the IO thread. 59 // TopSites can be accessed from the IO thread.
58 return thumbnail_service_.get() ? 60 return thumbnail_service_.get() ?
59 NULL : content::URLDataSource::MessageLoopForRequestPath(path); 61 NULL : content::URLDataSource::MessageLoopForRequestPath(path);
60 } 62 }
61 63
62 bool ThumbnailSource::ShouldServiceRequest( 64 bool ThumbnailSource::ShouldServiceRequest(
63 const net::URLRequest* request) const { 65 const net::URLRequest* request) const {
64 if (request->url().SchemeIs(chrome::kChromeSearchScheme)) 66 if (request->url().SchemeIs(chrome::kChromeSearchScheme))
65 return InstantIOContext::ShouldServiceRequest(request); 67 return InstantIOContext::ShouldServiceRequest(request);
66 return URLDataSource::ShouldServiceRequest(request); 68 return URLDataSource::ShouldServiceRequest(request);
67 } 69 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/ntp/thumbnail_source.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698