diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-26 18:41:55 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-26 18:41:55 +0000 |
commit | e2170f8cc32db962f0c67dc7862cca7c59e828d3 (patch) | |
tree | 8c9b1f54922049a0b5f81b57a84c5bc96db1714e /ui/gfx/favicon_size.h | |
parent | 79bd6e8691a7ff0b1d2b66a54cd09c9b874da8f9 (diff) | |
download | chromium_src-e2170f8cc32db962f0c67dc7862cca7c59e828d3.zip chromium_src-e2170f8cc32db962f0c67dc7862cca7c59e828d3.tar.gz chromium_src-e2170f8cc32db962f0c67dc7862cca7c59e828d3.tar.bz2 |
ui/gfx: Fix Linux shared build by adding missing UI_EXPORT annotations.
TBR=sky@chromium.org
Review URL: http://codereview.chromium.org/8028029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102765 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/favicon_size.h')
-rw-r--r-- | ui/gfx/favicon_size.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/gfx/favicon_size.h b/ui/gfx/favicon_size.h index 55bb6e35..5029b31 100644 --- a/ui/gfx/favicon_size.h +++ b/ui/gfx/favicon_size.h @@ -6,15 +6,17 @@ #define UI_GFX_FAVICON_SIZE_H_ #pragma once +#include "ui/base/ui_export.h" + namespace gfx { // Size (along each axis) of the favicon. -extern const int kFaviconSize; +UI_EXPORT extern const int kFaviconSize; // If the width or height is bigger than the favicon size, a new width/height // is calculated and returned in width/height that maintains the aspect // ratio of the supplied values. -void CalculateFaviconTargetSize(int* width, int* height); +UI_EXPORT void CalculateFaviconTargetSize(int* width, int* height); } // namespace gfx |