diff options
Diffstat (limited to 'chromium/ui/base/win/internal_constants.h')
-rw-r--r-- | chromium/ui/base/win/internal_constants.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/ui/base/win/internal_constants.h b/chromium/ui/base/win/internal_constants.h index 65f025f397a..c34541f5cbb 100644 --- a/chromium/ui/base/win/internal_constants.h +++ b/chromium/ui/base/win/internal_constants.h @@ -5,18 +5,19 @@ #ifndef UI_BASE_WIN_INTERNAL_CONSTANTS_H_ #define UI_BASE_WIN_INTERNAL_CONSTANTS_H_ -#include "ui/base/ui_base_export.h" +#include "base/component_export.h" namespace ui { // This window property if set on the window does not activate the window for a // touch based WM_MOUSEACTIVATE message. -UI_BASE_EXPORT extern const wchar_t kIgnoreTouchMouseActivateForWindow[]; +COMPONENT_EXPORT(UI_BASE) +extern const wchar_t kIgnoreTouchMouseActivateForWindow[]; // This property is put on an HWND so the compositor output knows to treat it // as transparent and draw to it using WS_EX_LAYERED (if using the software // compositor). -UI_BASE_EXPORT extern const wchar_t kWindowTranslucent[]; +COMPONENT_EXPORT(UI_BASE) extern const wchar_t kWindowTranslucent[]; } // namespace ui |