Index: cc/debug_rect_history.h |
diff --git a/cc/debug_rect_history.h b/cc/debug_rect_history.h |
index e61c4dd3138be044f3ebd0ece6ac4e72ce4885a4..7f7de53383b0fcf2ba98ff6850a815615dda18da 100644 |
--- a/cc/debug_rect_history.h |
+++ b/cc/debug_rect_history.h |
@@ -8,7 +8,7 @@ |
#include "base/basictypes.h" |
#include "base/memory/scoped_ptr.h" |
#include "ui/gfx/rect.h" |
-#include "FloatRect.h" |
+#include "ui/gfx/rect_f.h" |
#include <vector> |
namespace cc { |
@@ -38,12 +38,12 @@ struct LayerTreeSettings; |
enum DebugRectType { PaintRectType, PropertyChangedRectType, SurfaceDamageRectType, ScreenSpaceRectType, ReplicaScreenSpaceRectType, OccludingRectType }; |
struct DebugRect { |
- DebugRect(DebugRectType newType, FloatRect newRect) |
+ DebugRect(DebugRectType newType, gfx::RectF newRect) |
: type(newType) |
, rect(newRect) { } |
DebugRectType type; |
- FloatRect rect; |
+ gfx::RectF rect; |
}; |
// This class maintains a history of rects of various types that can be used |