diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 01:16:37 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 01:16:37 +0000 |
commit | 4b4b53eb7c21f5815c84dffec1472d9a187dae3c (patch) | |
tree | 11c535cd53d149d3e4ce77e6fdf9111f4915cf1a /ui | |
parent | f967b723292a0988bb3789094d5e1641caa0c2f8 (diff) | |
download | chromium_src-4b4b53eb7c21f5815c84dffec1472d9a187dae3c.zip chromium_src-4b4b53eb7c21f5815c84dffec1472d9a187dae3c.tar.gz chromium_src-4b4b53eb7c21f5815c84dffec1472d9a187dae3c.tar.bz2 |
Build fixes for r99884 for clang and Linux shared build.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99885 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r-- | ui/gfx/gtk_util.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/gfx/gtk_util.h b/ui/gfx/gtk_util.h index 71b9e52..3d1869f 100644 --- a/ui/gfx/gtk_util.h +++ b/ui/gfx/gtk_util.h @@ -64,7 +64,10 @@ UI_EXPORT std::string RemoveWindowsStyleAccelerators(const std::string& label); // Makes a copy of |pixels| with the ordering changed from BGRA to RGBA. // The caller is responsible for free()ing the data. If |stride| is 0, it's // assumed to be 4 * |width|. -uint8_t* BGRAToRGBA(const uint8_t* pixels, int width, int height, int stride); +UI_EXPORT uint8_t* BGRAToRGBA(const uint8_t* pixels, + int width, + int height, + int stride); // Initialize some GTK settings so that our dialogs are consistent. void InitRCStyles(); |