OLD | NEW |
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 #ifndef CHROME_BROWSER_THUMBNAILS_THUMBNAIL_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_THUMBNAILS_THUMBNAIL_SERVICE_H_ |
6 #define CHROME_BROWSER_THUMBNAILS_THUMBNAIL_SERVICE_H_ | 6 #define CHROME_BROWSER_THUMBNAILS_THUMBNAIL_SERVICE_H_ |
7 | 7 |
8 #include "chrome/common/thumbnail_score.h" | 8 #include "chrome/common/thumbnail_score.h" |
9 #include "components/browser_context_keyed_service/refcounted_browser_context_ke
yed_service.h" | 9 #include "components/browser_context_keyed_service/refcounted_browser_context_ke
yed_service.h" |
10 #include "ui/gfx/image/image.h" | 10 #include "ui/gfx/image/image.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 // Returns the ThumbnailingAlgorithm used for processing thumbnails. | 33 // Returns the ThumbnailingAlgorithm used for processing thumbnails. |
34 // It is always a new instance, the caller owns it. It will encapsulate the | 34 // It is always a new instance, the caller owns it. It will encapsulate the |
35 // process of creating a thumbnail from tab contents. The lifetime of these | 35 // process of creating a thumbnail from tab contents. The lifetime of these |
36 // instances is limited to the act of processing a single tab image. They | 36 // instances is limited to the act of processing a single tab image. They |
37 // are permitted to hold the state of such process. | 37 // are permitted to hold the state of such process. |
38 virtual ThumbnailingAlgorithm* GetThumbnailingAlgorithm() const = 0; | 38 virtual ThumbnailingAlgorithm* GetThumbnailingAlgorithm() const = 0; |
39 | 39 |
40 // Gets a thumbnail for a given page. Returns true iff we have the thumbnail. | 40 // Gets a thumbnail for a given page. Returns true iff we have the thumbnail. |
41 // This may be invoked on any thread. | 41 // This may be invoked on any thread. |
| 42 // If an exact thumbnail URL match fails, |prefix_match| specifies whether or |
| 43 // not to try harder by matching the query thumbnail URL as URL prefix. |
42 // As this method may be invoked on any thread the ref count needs to be | 44 // As this method may be invoked on any thread the ref count needs to be |
43 // incremented before this method returns, so this takes a scoped_refptr*. | 45 // incremented before this method returns, so this takes a scoped_refptr*. |
44 virtual bool GetPageThumbnail( | 46 virtual bool GetPageThumbnail( |
45 const GURL& url, | 47 const GURL& url, |
| 48 bool prefix_match, |
46 scoped_refptr<base::RefCountedMemory>* bytes) = 0; | 49 scoped_refptr<base::RefCountedMemory>* bytes) = 0; |
47 | 50 |
48 // Returns true if the page thumbnail should be updated. | 51 // Returns true if the page thumbnail should be updated. |
49 virtual bool ShouldAcquirePageThumbnail(const GURL& url) = 0; | 52 virtual bool ShouldAcquirePageThumbnail(const GURL& url) = 0; |
50 | 53 |
51 protected: | 54 protected: |
52 virtual ~ThumbnailService() {} | 55 virtual ~ThumbnailService() {} |
53 }; | 56 }; |
54 | 57 |
55 } | 58 } // namespace thumbnails |
56 | 59 |
57 #endif // CHROME_BROWSER_THUMBNAILS_THUMBNAIL_SERVICE_H_ | 60 #endif // CHROME_BROWSER_THUMBNAILS_THUMBNAIL_SERVICE_H_ |
OLD | NEW |