Chromium Code Reviews| Index: ui/gfx/image/image_util.h |
| diff --git a/ui/gfx/image/image_util.h b/ui/gfx/image/image_util.h |
| index a039557a8f0e210ef38312c1c55d9ee919fc9f45..bca2c2ed83c0f7941e66fe63b8a9381baca6c1fa 100644 |
| --- a/ui/gfx/image/image_util.h |
| +++ b/ui/gfx/image/image_util.h |
| @@ -18,7 +18,7 @@ namespace gfx { |
| // Creates an image from the given JPEG-encoded input. If there was an error |
| // creating the image, returns an IsEmpty() Image. |
| -UI_EXPORT Image ImageFrom1xJPEGEncodedData(const unsigned char* input, |
| +GFX_EXPORT Image ImageFrom1xJPEGEncodedData(const unsigned char* input, |
| size_t input_size); |
|
sky
2013/09/24 19:11:40
nit: moar indenting
|
| // Fills the |dst| vector with JPEG-encoded bytes of the 1x representation of |
| @@ -27,7 +27,7 @@ UI_EXPORT Image ImageFrom1xJPEGEncodedData(const unsigned char* input, |
| // was encoded successfully. |
| // |quality| determines the compression level, 0 == lowest, 100 == highest. |
| // Returns true if the Image was encoded successfully. |
| -UI_EXPORT bool JPEG1xEncodedDataFromImage(const Image& image, |
| +GFX_EXPORT bool JPEG1xEncodedDataFromImage(const Image& image, |
| int quality, |
| std::vector<unsigned char>* dst); |