Index: ui/gfx/rect.h |
diff --git a/ui/gfx/rect.h b/ui/gfx/rect.h |
index 2eab239d4bc76d948c93b86606622841fe778b39..bf56896972db36112a02752c271723bb7321110d 100644 |
--- a/ui/gfx/rect.h |
+++ b/ui/gfx/rect.h |
@@ -75,6 +75,10 @@ inline bool operator!=(const Rect& lhs, const Rect& rhs) { |
return !(lhs == rhs); |
} |
+UI_EXPORT Rect IntersectRects(const Rect& a, const Rect& b); |
+UI_EXPORT Rect UnionRects(const Rect& a, const Rect& b); |
+UI_EXPORT Rect SubtractRects(const Rect& a, const Rect& b); |
+ |
#if !defined(COMPILER_MSVC) |
extern template class RectBase<Rect, Point, Size, Insets, int>; |
#endif |