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 #include "chrome/browser/ui/webui/extensions/extension_icon_source.h" | 5 #include "chrome/browser/ui/webui/extensions/extension_icon_source.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/memory/ref_counted_memory.h" | 9 #include "base/memory/ref_counted_memory.h" |
10 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 favicon_url, | 216 favicon_url, |
217 history::FAVICON, | 217 history::FAVICON, |
218 &cancelable_consumer_, | 218 &cancelable_consumer_, |
219 base::Bind(&ExtensionIconSource::OnFaviconDataAvailable, | 219 base::Bind(&ExtensionIconSource::OnFaviconDataAvailable, |
220 base::Unretained(this))); | 220 base::Unretained(this))); |
221 cancelable_consumer_.SetClientData(favicon_service, handle, request_id); | 221 cancelable_consumer_.SetClientData(favicon_service, handle, request_id); |
222 } | 222 } |
223 | 223 |
224 void ExtensionIconSource::OnFaviconDataAvailable( | 224 void ExtensionIconSource::OnFaviconDataAvailable( |
225 FaviconService::Handle request_handle, | 225 FaviconService::Handle request_handle, |
226 history::FaviconData favicon) { | 226 history::FaviconData favicon_data) { |
227 int request_id = cancelable_consumer_.GetClientData( | 227 int request_id = cancelable_consumer_.GetClientData( |
228 profile_->GetFaviconService(Profile::EXPLICIT_ACCESS), request_handle); | 228 profile_->GetFaviconService(Profile::EXPLICIT_ACCESS), request_handle); |
229 ExtensionIconRequest* request = GetData(request_id); | 229 ExtensionIconRequest* request = GetData(request_id); |
230 | 230 |
231 // Fallback to the default icon if there wasn't a favicon. | 231 // Fallback to the default icon if there wasn't a favicon. |
232 if (!favicon.is_valid()) { | 232 if (!favicon_data.is_valid()) { |
233 LoadDefaultImage(request_id); | 233 LoadDefaultImage(request_id); |
234 return; | 234 return; |
235 } | 235 } |
236 | 236 |
| 237 const history::FaviconDataElement& element = favicon_data.elements[0]; |
237 if (!request->grayscale) { | 238 if (!request->grayscale) { |
238 // If we don't need a grayscale image, then we can bypass FinalizeImage | 239 // If we don't need a grayscale image, then we can bypass FinalizeImage |
239 // to avoid unnecessary conversions. | 240 // to avoid unnecessary conversions. |
240 ClearData(request_id); | 241 ClearData(request_id); |
241 SendResponse(request_id, favicon.image_data); | 242 SendResponse(request_id, element.bitmap_data); |
242 } else { | 243 } else { |
243 FinalizeImage(ToBitmap(favicon.image_data->front(), | 244 FinalizeImage(ToBitmap(element.bitmap_data->front(), |
244 favicon.image_data->size()), request_id); | 245 element.bitmap_data->size()), request_id); |
245 } | 246 } |
246 } | 247 } |
247 | 248 |
248 void ExtensionIconSource::OnImageLoaded(const gfx::Image& image, | 249 void ExtensionIconSource::OnImageLoaded(const gfx::Image& image, |
249 const std::string& extension_id, | 250 const std::string& extension_id, |
250 int index) { | 251 int index) { |
251 int request_id = tracker_map_[index]; | 252 int request_id = tracker_map_[index]; |
252 tracker_map_.erase(tracker_map_.find(index)); | 253 tracker_map_.erase(tracker_map_.find(index)); |
253 | 254 |
254 if (image.IsEmpty()) | 255 if (image.IsEmpty()) |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 | 340 |
340 void ExtensionIconSource::ClearData(int request_id) { | 341 void ExtensionIconSource::ClearData(int request_id) { |
341 std::map<int, ExtensionIconRequest*>::iterator i = | 342 std::map<int, ExtensionIconRequest*>::iterator i = |
342 request_map_.find(request_id); | 343 request_map_.find(request_id); |
343 if (i == request_map_.end()) | 344 if (i == request_map_.end()) |
344 return; | 345 return; |
345 | 346 |
346 delete i->second; | 347 delete i->second; |
347 request_map_.erase(i); | 348 request_map_.erase(i); |
348 } | 349 } |
OLD | NEW |