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

Side by Side Diff: chrome/browser/thumbnails/content_based_thumbnailing_algorithm.h

Issue 15458003: Plugs in the new thumbnailing algorithm to ThumbnailTabHelper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing up details to make clang happy. Created 7 years, 7 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_THUMBNAILS_CONTENT_BASED_THUMBNAILING_ALGORITHM_H_
6 #define CHROME_BROWSER_THUMBNAILS_CONTENT_BASED_THUMBNAILING_ALGORITHM_H_
7
8 #include "chrome/browser/thumbnails/thumbnailing_algorithm.h"
9
10 namespace thumbnails {
11
mazda 2013/05/29 21:50:27 Could you add a brief comment?
motek. 2013/05/30 15:00:03 Done.
12 class ContentBasedThumbnailingAlgorithm : public ThumbnailingAlgorithm {
13 public:
14 explicit ContentBasedThumbnailingAlgorithm(const gfx::Size& target_size);
15
16 virtual ClipResult GetCanvasCopyInfo(const gfx::Size& source_size,
17 ui::ScaleFactor scale_factor,
18 gfx::Rect* clipping_rect,
19 gfx::Size* target_size) const OVERRIDE;
20
21 virtual void ProcessBitmap(scoped_refptr<ThumbnailingContext> context,
22 const ConsumerCallback& callback,
23 const SkBitmap& bitmap) OVERRIDE;
24
25 // Prepares (clips to size, copies etc.) the bitmap passed to ProcessBitmap.
26 // Always returns a bitmap that can be properly refcounted.
27 // Extracted and exposed as a test seam.
28 static SkBitmap PrepareSourceBitmap(const SkBitmap& received_bitmap,
29 const gfx::Size& thumbnail_size,
30 ThumbnailingContext* context);
31
32 // The function processes |source_bitmap| into a thumbnail of |thumbnail_size|
33 // and passes the result into |callback| (on UI thread). |context| describes
34 // how the thumbnail is being created.
35 static void CreateRetargettedThumbnail(
36 const SkBitmap& source_bitmap,
37 const gfx::Size& thumbnail_size,
38 scoped_refptr<ThumbnailingContext> context,
39 const ConsumerCallback& callback);
40
41 protected:
42 virtual ~ContentBasedThumbnailingAlgorithm();
43
44 private:
45 static gfx::Rect GetClippingRect(const gfx::Size& source_size,
46 const gfx::Size& thumbnail_size,
47 gfx::Size* target_size,
48 ClipResult* clip_result);
49
50 const gfx::Size target_size_;
51
52 DISALLOW_COPY_AND_ASSIGN(ContentBasedThumbnailingAlgorithm);
53 };
54
55 } // namespace thumbnails
56
57 #endif // CHROME_BROWSER_THUMBNAILS_CONTENT_BASED_THUMBNAILING_ALGORITHM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698