| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 // Fallback to the default icon if there wasn't a favicon. | 230 // Fallback to the default icon if there wasn't a favicon. |
| 231 if (!favicon.is_valid()) { | 231 if (!favicon.is_valid()) { |
| 232 LoadDefaultImage(request_id); | 232 LoadDefaultImage(request_id); |
| 233 return; | 233 return; |
| 234 } | 234 } |
| 235 | 235 |
| 236 if (!request->grayscale) { | 236 if (!request->grayscale) { |
| 237 // If we don't need a grayscale image, then we can bypass FinalizeImage | 237 // If we don't need a grayscale image, then we can bypass FinalizeImage |
| 238 // to avoid unnecessary conversions. | 238 // to avoid unnecessary conversions. |
| 239 ClearData(request_id); | 239 ClearData(request_id); |
| 240 SendResponse(request_id, favicon.image_data); | 240 SendResponse(request_id, favicon.bitmap_data); |
| 241 } else { | 241 } else { |
| 242 FinalizeImage(ToBitmap(favicon.image_data->front(), | 242 FinalizeImage(ToBitmap(favicon.bitmap_data->front(), |
| 243 favicon.image_data->size()), request_id); | 243 favicon.bitmap_data->size()), request_id); |
| 244 } | 244 } |
| 245 } | 245 } |
| 246 | 246 |
| 247 void ExtensionIconSource::OnImageLoaded(const gfx::Image& image, | 247 void ExtensionIconSource::OnImageLoaded(const gfx::Image& image, |
| 248 const std::string& extension_id, | 248 const std::string& extension_id, |
| 249 int index) { | 249 int index) { |
| 250 int request_id = tracker_map_[index]; | 250 int request_id = tracker_map_[index]; |
| 251 tracker_map_.erase(tracker_map_.find(index)); | 251 tracker_map_.erase(tracker_map_.find(index)); |
| 252 | 252 |
| 253 if (image.IsEmpty()) | 253 if (image.IsEmpty()) |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 | 338 |
| 339 void ExtensionIconSource::ClearData(int request_id) { | 339 void ExtensionIconSource::ClearData(int request_id) { |
| 340 std::map<int, ExtensionIconRequest*>::iterator i = | 340 std::map<int, ExtensionIconRequest*>::iterator i = |
| 341 request_map_.find(request_id); | 341 request_map_.find(request_id); |
| 342 if (i == request_map_.end()) | 342 if (i == request_map_.end()) |
| 343 return; | 343 return; |
| 344 | 344 |
| 345 delete i->second; | 345 delete i->second; |
| 346 request_map_.erase(i); | 346 request_map_.erase(i); |
| 347 } | 347 } |
| OLD | NEW |