Drive-by: `COMPONENT_EXPORT()` in 'ui/gfx/geometry`
Make them `COMPONENT_EXPORT(GEOMETRY)`.
Change-Id: I66c905da06f6057bff9bc65b2f10d8eadf8f51ad
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6034079
Commit-Queue: Kalvin Lee <[email protected]>
Reviewed-by: Xiyuan Xia <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1386049}
diff --git a/ui/gfx/geometry/decomposed_transform.h b/ui/gfx/geometry/decomposed_transform.h
index 94435bd..e93a5dc 100644
--- a/ui/gfx/geometry/decomposed_transform.h
+++ b/ui/gfx/geometry/decomposed_transform.h
@@ -5,15 +5,15 @@
#ifndef UI_GFX_GEOMETRY_DECOMPOSED_TRANSFORM_H_
#define UI_GFX_GEOMETRY_DECOMPOSED_TRANSFORM_H_
+#include "base/component_export.h"
#include "base/dcheck_is_on.h"
-#include "ui/gfx/geometry/geometry_export.h"
#include "ui/gfx/geometry/quaternion.h"
namespace gfx {
// Contains the components of a factored transform. These components may be
// blended and recomposed.
-struct GEOMETRY_EXPORT DecomposedTransform {
+struct COMPONENT_EXPORT(GEOMETRY) DecomposedTransform {
// The default constructor initializes the components in such a way that
// will compose the identity transform.
double translate[3] = {0, 0, 0};