OLD | NEW |
---|---|
(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_ADVANCED_THUMBNAIL_CROP_H_ | |
6 #define CHROME_BROWSER_THUMBNAILS_ADVANCED_THUMBNAIL_CROP_H_ | |
7 | |
8 #include "chrome/browser/thumbnails/thumbnailing_algorithm.h" | |
9 | |
10 namespace thumbnails { | |
11 | |
12 class AdvancedThumbnailCrop : public ThumbnailingAlgorithm { | |
mazda
2013/05/23 19:13:57
Can you make the name more descriptive?
motek.
2013/05/27 16:54:54
Done.
| |
13 public: | |
14 explicit AdvancedThumbnailCrop(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 ~AdvancedThumbnailCrop(); | |
43 | |
44 | |
mazda
2013/05/23 19:13:57
nit: delete one empty line.
motek.
2013/05/27 16:54:54
Done.
| |
45 private: | |
46 static gfx::Rect GetClippingRect(const gfx::Size& source_size, | |
47 const gfx::Size& thumbnail_size, | |
48 gfx::Size* target_size, | |
49 ClipResult* clip_result); | |
50 | |
51 const gfx::Size target_size_; | |
52 | |
53 DISALLOW_COPY_AND_ASSIGN(AdvancedThumbnailCrop); | |
54 }; | |
55 | |
56 } // namespace thumbnails | |
57 | |
58 #endif // CHROME_BROWSER_THUMBNAILS_ADVANCED_THUMBNAIL_CROP_H_ | |
OLD | NEW |