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

Side by Side Diff: components/favicon_base/favicon_util.cc

Issue 335233003: Convert ui::ScaleFactor -> float in favicon/history code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix size_t Created 6 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/favicon_base/favicon_util.h" 5 #include "components/favicon_base/favicon_util.h"
6 6
7 #include <cmath>
8
7 #include "components/favicon_base/favicon_types.h" 9 #include "components/favicon_base/favicon_types.h"
8 #include "components/favicon_base/select_favicon_frames.h" 10 #include "components/favicon_base/select_favicon_frames.h"
9 #include "skia/ext/image_operations.h" 11 #include "skia/ext/image_operations.h"
10 #include "third_party/skia/include/core/SkBitmap.h" 12 #include "third_party/skia/include/core/SkBitmap.h"
11 #include "third_party/skia/include/core/SkCanvas.h" 13 #include "third_party/skia/include/core/SkCanvas.h"
14 #include "ui/base/layout.h"
12 #include "ui/gfx/codec/png_codec.h" 15 #include "ui/gfx/codec/png_codec.h"
13 #include "ui/gfx/favicon_size.h" 16 #include "ui/gfx/favicon_size.h"
14 #include "ui/gfx/image/image_png_rep.h" 17 #include "ui/gfx/image/image_png_rep.h"
15 #include "ui/gfx/image/image_skia.h" 18 #include "ui/gfx/image/image_skia.h"
16 #include "ui/gfx/size.h" 19 #include "ui/gfx/size.h"
17 20
18 #if defined(OS_MACOSX) && !defined(OS_IOS) 21 #if defined(OS_MACOSX) && !defined(OS_IOS)
19 #include "base/mac/mac_util.h" 22 #include "base/mac/mac_util.h"
20 #endif // defined(OS_MACOSX) && !defined(OS_IOS) 23 #endif // defined(OS_MACOSX) && !defined(OS_IOS)
21 24
22 namespace favicon_base { 25 namespace favicon_base {
23 namespace { 26 namespace {
24 27
25 // Creates image reps of DIP size |favicon_size| for the subset of 28 // Creates image reps of DIP size |favicon_size| for the subset of
26 // |scale_factors| for which the image reps can be created without resizing 29 // |favicon_scales| for which the image reps can be created without resizing
27 // or decoding the bitmap data. 30 // or decoding the bitmap data.
28 std::vector<gfx::ImagePNGRep> SelectFaviconFramesFromPNGsWithoutResizing( 31 std::vector<gfx::ImagePNGRep> SelectFaviconFramesFromPNGsWithoutResizing(
29 const std::vector<favicon_base::FaviconRawBitmapResult>& png_data, 32 const std::vector<favicon_base::FaviconRawBitmapResult>& png_data,
30 const std::vector<ui::ScaleFactor>& scale_factors, 33 const std::vector<float>& favicon_scales,
31 int favicon_size) { 34 int favicon_size) {
32 std::vector<gfx::ImagePNGRep> png_reps; 35 std::vector<gfx::ImagePNGRep> png_reps;
33 if (png_data.empty()) 36 if (png_data.empty())
34 return png_reps; 37 return png_reps;
35 38
36 // A |favicon_size| of 0 indicates that the largest frame is desired. 39 // A |favicon_size| of 0 indicates that the largest frame is desired.
37 if (favicon_size == 0) { 40 if (favicon_size == 0) {
38 int maximum_area = 0; 41 int maximum_area = 0;
39 scoped_refptr<base::RefCountedMemory> best_candidate; 42 scoped_refptr<base::RefCountedMemory> best_candidate;
40 for (size_t i = 0; i < png_data.size(); ++i) { 43 for (size_t i = 0; i < png_data.size(); ++i) {
41 int area = png_data[i].pixel_size.GetArea(); 44 int area = png_data[i].pixel_size.GetArea();
42 if (area > maximum_area) { 45 if (area > maximum_area) {
43 maximum_area = area; 46 maximum_area = area;
44 best_candidate = png_data[i].bitmap_data; 47 best_candidate = png_data[i].bitmap_data;
45 } 48 }
46 } 49 }
47 png_reps.push_back(gfx::ImagePNGRep(best_candidate, 1.0f)); 50 png_reps.push_back(gfx::ImagePNGRep(best_candidate, 1.0f));
48 return png_reps; 51 return png_reps;
49 } 52 }
50 53
51 // Cache the scale factor for each pixel size as |scale_factors| may contain 54 // Build a map which will be used to determine the scale used to
52 // any of GetFaviconScaleFactors() which may include scale factors not 55 // create a bitmap with given pixel size.
53 // supported by the platform. (ui::GetSupportedScaleFactor() cannot be used.) 56 std::map<int, float> desired_pixel_sizes;
54 std::map<int, ui::ScaleFactor> desired_pixel_sizes; 57 for (size_t i = 0; i < favicon_scales.size(); ++i) {
55 for (size_t i = 0; i < scale_factors.size(); ++i) { 58 int pixel_size = std::ceil(favicon_size * favicon_scales[i]);
56 int pixel_size = 59 desired_pixel_sizes[pixel_size] = favicon_scales[i];
57 floor(favicon_size * ui::GetScaleForScaleFactor(scale_factors[i]));
58 desired_pixel_sizes[pixel_size] = scale_factors[i];
59 } 60 }
60 61
61 for (size_t i = 0; i < png_data.size(); ++i) { 62 for (size_t i = 0; i < png_data.size(); ++i) {
62 if (!png_data[i].is_valid()) 63 if (!png_data[i].is_valid())
63 continue; 64 continue;
64 65
65 const gfx::Size& pixel_size = png_data[i].pixel_size; 66 const gfx::Size& pixel_size = png_data[i].pixel_size;
66 if (pixel_size.width() != pixel_size.height()) 67 if (pixel_size.width() != pixel_size.height())
67 continue; 68 continue;
68 69
69 std::map<int, ui::ScaleFactor>::iterator it = 70 std::map<int, float>::iterator it =
70 desired_pixel_sizes.find(pixel_size.width()); 71 desired_pixel_sizes.find(pixel_size.width());
71 if (it == desired_pixel_sizes.end()) 72 if (it == desired_pixel_sizes.end())
72 continue; 73 continue;
73 74
74 png_reps.push_back(gfx::ImagePNGRep( 75 png_reps.push_back(gfx::ImagePNGRep(png_data[i].bitmap_data, it->second));
75 png_data[i].bitmap_data, ui::GetScaleForScaleFactor(it->second)));
76 } 76 }
77 77
78 return png_reps; 78 return png_reps;
79 } 79 }
80 80
81 // Returns a resampled bitmap of 81 // Returns a resampled bitmap of
82 // |desired_size_in_pixel| x |desired_size_in_pixel| by resampling the best 82 // |desired_size_in_pixel| x |desired_size_in_pixel| by resampling the best
83 // bitmap out of |input_bitmaps|. ResizeBitmapByDownsamplingIfPossible() is 83 // bitmap out of |input_bitmaps|. ResizeBitmapByDownsamplingIfPossible() is
84 // similar to SelectFaviconFrames() but it operates on bitmaps which have 84 // similar to SelectFaviconFrames() but it operates on bitmaps which have
85 // already been resampled via SelectFaviconFrames(). 85 // already been resampled via SelectFaviconFrames().
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 return bitmap; 129 return bitmap;
130 } 130 }
131 return skia::ImageOperations::Resize(best_bitmap, 131 return skia::ImageOperations::Resize(best_bitmap,
132 skia::ImageOperations::RESIZE_LANCZOS3, 132 skia::ImageOperations::RESIZE_LANCZOS3,
133 desired_size_in_pixel, 133 desired_size_in_pixel,
134 desired_size_in_pixel); 134 desired_size_in_pixel);
135 } 135 }
136 136
137 } // namespace 137 } // namespace
138 138
139 std::vector<ui::ScaleFactor> GetFaviconScaleFactors() { 139 std::vector<float> GetFaviconScales() {
140 const float kScale1x = 1.0f; 140 const float kScale1x = 1.0f;
141 std::vector<ui::ScaleFactor> favicon_scale_factors = 141 std::vector<ui::ScaleFactor> resource_scale_factors =
142 ui::GetSupportedScaleFactors(); 142 ui::GetSupportedScaleFactors();
143 143
144 // The scale factors returned from ui::GetSupportedScaleFactors() are sorted. 144 // TODO(ios): 1.0f should not be necessary on iOS retina devices. However
145 // Insert the 1x scale factor such that GetFaviconScaleFactors() is sorted as 145 // the sync service only supports syncing 100p favicons. Until sync supports
146 // well. 146 // other scales 100p is needed in the list of scales to retrieve and
147 size_t insert_index = favicon_scale_factors.size(); 147 // store the favicons in both 100p for sync and 200p for display. cr/160503.
148 for (size_t i = 0; i < favicon_scale_factors.size(); ++i) { 148 std::vector<float> favicon_scales(1, kScale1x);
149 float scale = ui::GetScaleForScaleFactor(favicon_scale_factors[i]); 149 for (size_t i = 0; i < resource_scale_factors.size(); ++i) {
150 if (scale == kScale1x) { 150 if (resource_scale_factors[i] != ui::SCALE_FACTOR_100P)
151 return favicon_scale_factors; 151 favicon_scales.push_back(
152 } else if (scale > kScale1x) { 152 ui::GetScaleForScaleFactor(resource_scale_factors[i]));
153 insert_index = i;
154 break;
155 }
156 } 153 }
157 // TODO(ios): 100p should not be necessary on iOS retina devices. However 154 return favicon_scales;
158 // the sync service only supports syncing 100p favicons. Until sync supports
159 // other scales 100p is needed in the list of scale factors to retrieve and
160 // store the favicons in both 100p for sync and 200p for display. cr/160503.
161 favicon_scale_factors.insert(favicon_scale_factors.begin() + insert_index,
162 ui::SCALE_FACTOR_100P);
163 return favicon_scale_factors;
164 } 155 }
165 156
166 void SetFaviconColorSpace(gfx::Image* image) { 157 void SetFaviconColorSpace(gfx::Image* image) {
167 #if defined(OS_MACOSX) && !defined(OS_IOS) 158 #if defined(OS_MACOSX) && !defined(OS_IOS)
168 image->SetSourceColorSpace(base::mac::GetSystemColorSpace()); 159 image->SetSourceColorSpace(base::mac::GetSystemColorSpace());
169 #endif // defined(OS_MACOSX) && !defined(OS_IOS) 160 #endif // defined(OS_MACOSX) && !defined(OS_IOS)
170 } 161 }
171 162
172 gfx::Image SelectFaviconFramesFromPNGs( 163 gfx::Image SelectFaviconFramesFromPNGs(
173 const std::vector<favicon_base::FaviconRawBitmapResult>& png_data, 164 const std::vector<favicon_base::FaviconRawBitmapResult>& png_data,
174 const std::vector<ui::ScaleFactor>& scale_factors, 165 const std::vector<float>& favicon_scales,
175 int favicon_size) { 166 int favicon_size) {
176 // Create image reps for as many scale factors as possible without resizing 167 // Create image reps for as many scales as possible without resizing
177 // the bitmap data or decoding it. FaviconHandler stores already resized 168 // the bitmap data or decoding it. FaviconHandler stores already resized
178 // favicons into history so no additional resizing should be needed in the 169 // favicons into history so no additional resizing should be needed in the
179 // common case. 170 // common case.
180 // Creating the gfx::Image from |png_data| without resizing or decoding if 171 // Creating the gfx::Image from |png_data| without resizing or decoding if
181 // possible is important because: 172 // possible is important because:
182 // - Sync does a byte-to-byte comparison of gfx::Image::As1xPNGBytes() to 173 // - Sync does a byte-to-byte comparison of gfx::Image::As1xPNGBytes() to
183 // the data it put into the database in order to determine whether any 174 // the data it put into the database in order to determine whether any
184 // updates should be pushed to sync. 175 // updates should be pushed to sync.
185 // - The decoding occurs on the UI thread and the decoding can be a 176 // - The decoding occurs on the UI thread and the decoding can be a
186 // significant performance hit if a user has many bookmarks. 177 // significant performance hit if a user has many bookmarks.
187 // TODO(pkotwicz): Move the decoding off the UI thread. 178 // TODO(pkotwicz): Move the decoding off the UI thread.
188 std::vector<gfx::ImagePNGRep> png_reps = 179 std::vector<gfx::ImagePNGRep> png_reps =
189 SelectFaviconFramesFromPNGsWithoutResizing( 180 SelectFaviconFramesFromPNGsWithoutResizing(
190 png_data, scale_factors, favicon_size); 181 png_data, favicon_scales, favicon_size);
191 182
192 // SelectFaviconFramesFromPNGsWithoutResizing() should have selected the 183 // SelectFaviconFramesFromPNGsWithoutResizing() should have selected the
193 // largest favicon if |favicon_size| == 0. 184 // largest favicon if |favicon_size| == 0.
194 if (favicon_size == 0) 185 if (favicon_size == 0)
195 return gfx::Image(png_reps); 186 return gfx::Image(png_reps);
196 187
197 std::vector<ui::ScaleFactor> scale_factors_to_generate = scale_factors; 188 std::vector<float> favicon_scales_to_generate = favicon_scales;
198 for (size_t i = 0; i < png_reps.size(); ++i) { 189 for (size_t i = 0; i < png_reps.size(); ++i) {
199 for (int j = static_cast<int>(scale_factors_to_generate.size()) - 1; j >= 0; 190 for (int j = static_cast<int>(favicon_scales_to_generate.size()) - 1;
191 j >= 0;
200 --j) { 192 --j) {
201 if (png_reps[i].scale == 193 if (png_reps[i].scale == favicon_scales_to_generate[j]) {
202 ui::GetScaleForScaleFactor(scale_factors_to_generate[j])) { 194 favicon_scales_to_generate.erase(favicon_scales_to_generate.begin() +
203 scale_factors_to_generate.erase(scale_factors_to_generate.begin() + j); 195 j);
204 } 196 }
205 } 197 }
206 } 198 }
207 199
208 if (scale_factors_to_generate.empty()) 200 if (favicon_scales_to_generate.empty())
209 return gfx::Image(png_reps); 201 return gfx::Image(png_reps);
210 202
211 std::vector<SkBitmap> bitmaps; 203 std::vector<SkBitmap> bitmaps;
212 for (size_t i = 0; i < png_data.size(); ++i) { 204 for (size_t i = 0; i < png_data.size(); ++i) {
213 if (!png_data[i].is_valid()) 205 if (!png_data[i].is_valid())
214 continue; 206 continue;
215 207
216 SkBitmap bitmap; 208 SkBitmap bitmap;
217 if (gfx::PNGCodec::Decode(png_data[i].bitmap_data->front(), 209 if (gfx::PNGCodec::Decode(png_data[i].bitmap_data->front(),
218 png_data[i].bitmap_data->size(), 210 png_data[i].bitmap_data->size(),
219 &bitmap)) { 211 &bitmap)) {
220 bitmaps.push_back(bitmap); 212 bitmaps.push_back(bitmap);
221 } 213 }
222 } 214 }
223 215
224 if (bitmaps.empty()) 216 if (bitmaps.empty())
225 return gfx::Image(); 217 return gfx::Image();
226 218
227 gfx::ImageSkia resized_image_skia; 219 gfx::ImageSkia resized_image_skia;
228 for (size_t i = 0; i < scale_factors_to_generate.size(); ++i) { 220 for (size_t i = 0; i < favicon_scales_to_generate.size(); ++i) {
229 float scale = ui::GetScaleForScaleFactor(scale_factors_to_generate[i]); 221 float scale = favicon_scales_to_generate[i];
230 int desired_size_in_pixel = ceil(favicon_size * scale); 222 int desired_size_in_pixel = std::ceil(favicon_size * scale);
231 SkBitmap bitmap = 223 SkBitmap bitmap =
232 ResizeBitmapByDownsamplingIfPossible(bitmaps, desired_size_in_pixel); 224 ResizeBitmapByDownsamplingIfPossible(bitmaps, desired_size_in_pixel);
233 resized_image_skia.AddRepresentation(gfx::ImageSkiaRep(bitmap, scale)); 225 resized_image_skia.AddRepresentation(gfx::ImageSkiaRep(bitmap, scale));
234 } 226 }
235 227
236 if (png_reps.empty()) 228 if (png_reps.empty())
237 return gfx::Image(resized_image_skia); 229 return gfx::Image(resized_image_skia);
238 230
239 std::vector<gfx::ImageSkiaRep> resized_image_skia_reps = 231 std::vector<gfx::ImageSkiaRep> resized_image_skia_reps =
240 resized_image_skia.image_reps(); 232 resized_image_skia.image_reps();
241 for (size_t i = 0; i < resized_image_skia_reps.size(); ++i) { 233 for (size_t i = 0; i < resized_image_skia_reps.size(); ++i) {
242 scoped_refptr<base::RefCountedBytes> png_bytes(new base::RefCountedBytes()); 234 scoped_refptr<base::RefCountedBytes> png_bytes(new base::RefCountedBytes());
243 if (gfx::PNGCodec::EncodeBGRASkBitmap( 235 if (gfx::PNGCodec::EncodeBGRASkBitmap(
244 resized_image_skia_reps[i].sk_bitmap(), 236 resized_image_skia_reps[i].sk_bitmap(),
245 false, 237 false,
246 &png_bytes->data())) { 238 &png_bytes->data())) {
247 png_reps.push_back( 239 png_reps.push_back(
248 gfx::ImagePNGRep(png_bytes, resized_image_skia_reps[i].scale())); 240 gfx::ImagePNGRep(png_bytes, resized_image_skia_reps[i].scale()));
249 } 241 }
250 } 242 }
251 243
252 return gfx::Image(png_reps); 244 return gfx::Image(png_reps);
253 } 245 }
254 246
255 } // namespace favicon_base 247 } // namespace favicon_base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698