Chromium Code Reviews| Index: ui/base/resource/resource_bundle.cc |
| diff --git a/ui/base/resource/resource_bundle.cc b/ui/base/resource/resource_bundle.cc |
| index 899a8a45cb95aaf05737504cde5e9780fdf25afd..257a5877a0a550442b2803ee91d7186889f6230f 100644 |
| --- a/ui/base/resource/resource_bundle.cc |
| +++ b/ui/base/resource/resource_bundle.cc |
| @@ -137,9 +137,10 @@ class ResourceBundle::ResourceBundleImageSource : public gfx::ImageSkiaSource { |
| // TODO(oshima): Android unit_tests runs at DSF=3 with 100P assets. |
| return gfx::ImageSkiaRep(); |
| #else |
| - NOTREACHED() << "Unable to load image with id " << resource_id_ |
| - << ", scale=" << scale; |
| - return gfx::ImageSkiaRep(CreateEmptyBitmap(), scale); |
| +// TODO: Remove before submitting. |
|
rjkroege
2016/09/21 13:23:47
please complete TODO
kylechar
2016/09/22 20:03:27
Done.
|
| +// NOTREACHED() << "Unable to load image with id " << resource_id_ |
| +// << ", scale=" << scale; |
| +// return gfx::ImageSkiaRep(CreateEmptyBitmap(), scale); |
| #endif |
| } |