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

Side by Side Diff: chrome/browser/ui/webui/ntp/thumbnail_list_source.h

Issue 24632002: Implementing chrome://thumbnails page to view URLs in TopSites and cached thumbnails. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment fixes. Created 7 years, 2 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #ifndef CHROME_BROWSER_UI_WEBUI_NTP_THUMBNAIL_SOURCE_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_NTP_THUMBNAIL_LIST_SOURCE_H_
6 #define CHROME_BROWSER_UI_WEBUI_NTP_THUMBNAIL_SOURCE_H_ 6 #define CHROME_BROWSER_UI_WEBUI_NTP_THUMBNAIL_LIST_SOURCE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "chrome/browser/history/history_types.h"
12 #include "content/public/browser/url_data_source.h" 13 #include "content/public/browser/url_data_source.h"
13 14
14 class Profile; 15 class Profile;
15 16
16 namespace base { 17 namespace base {
17 class RefCountedMemory; 18 class RefCountedMemory;
18 } 19 }
19 20
20 namespace thumbnails { 21 namespace thumbnails {
21 class ThumbnailService; 22 class ThumbnailService;
22 } 23 }
23 24
24 // ThumbnailSource is the gateway between network-level chrome: requests for 25 // ThumbnailListSource renders a webpage to list all thumbnails stored in
25 // thumbnails and the history/top-sites backend that serves these. 26 // TopSites, along with all associated URLs. The thumbnail images are embedded
26 class ThumbnailSource : public content::URLDataSource { 27 // into the HTML via Base64, so we can easily produce a dump of TopSites and
28 // the thumbnails it stores.
29 class ThumbnailListSource : public content::URLDataSource {
27 public: 30 public:
28 ThumbnailSource(Profile* profile, bool prefix_match); 31 explicit ThumbnailListSource(Profile* profile);
29 32
30 // content::URLDataSource implementation. 33 // content::URLDataSource implementation.
31 virtual std::string GetSource() const OVERRIDE; 34 virtual std::string GetSource() const OVERRIDE;
32 virtual void StartDataRequest( 35 virtual void StartDataRequest(
33 const std::string& path, 36 const std::string& path,
34 int render_process_id, 37 int render_process_id,
35 int render_view_id, 38 int render_view_id,
36 const content::URLDataSource::GotDataCallback& callback) OVERRIDE; 39 const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
37 virtual std::string GetMimeType(const std::string& path) const OVERRIDE; 40 virtual std::string GetMimeType(const std::string& path) const OVERRIDE;
38 virtual base::MessageLoop* MessageLoopForRequestPath( 41 virtual base::MessageLoop* MessageLoopForRequestPath(
39 const std::string& path) const OVERRIDE; 42 const std::string& path) const OVERRIDE;
40 virtual bool ShouldServiceRequest( 43 virtual bool ShouldServiceRequest(
41 const net::URLRequest* request) const OVERRIDE; 44 const net::URLRequest* request) const OVERRIDE;
42 45
43 private: 46 private:
44 virtual ~ThumbnailSource(); 47 virtual ~ThumbnailListSource();
45 48
46 // Raw PNG representation of the thumbnail to show when the thumbnail 49 void OnMostVisitedURLsAvailable(
47 // database doesn't have a thumbnail for a webpage. 50 const content::URLDataSource::GotDataCallback& callback,
48 scoped_refptr<base::RefCountedMemory> default_thumbnail_; 51 const history::MostVisitedURLList& visited_list);
49 52
50 // ThumbnailService. 53 // ThumbnailService.
51 scoped_refptr<thumbnails::ThumbnailService> thumbnail_service_; 54 scoped_refptr<thumbnails::ThumbnailService> thumbnail_service_;
52 55
53 // Only used when servicing requests on the UI thread. 56 // Only used when servicing requests on the UI thread.
54 Profile* const profile_; 57 Profile* const profile_;
55 58
56 // If an exact thumbnail URL match fails, specifies whether or not to try 59 DISALLOW_COPY_AND_ASSIGN(ThumbnailListSource);
57 // harder by matching the query thumbnail URL as URL prefix. This affects
58 // GetSource().
59 const bool prefix_match_;
60
61 DISALLOW_COPY_AND_ASSIGN(ThumbnailSource);
62 }; 60 };
63 61
64 #endif // CHROME_BROWSER_UI_WEBUI_NTP_THUMBNAIL_SOURCE_H_ 62
63 #endif // CHROME_BROWSER_UI_WEBUI_NTP_THUMBNAIL_LIST_SOURCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698