| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef LayerHitTestRects_h | 5 #ifndef LayerHitTestRects_h |
| 6 #define LayerHitTestRects_h | 6 #define LayerHitTestRects_h |
| 7 | 7 |
| 8 #include "platform/geometry/LayoutRect.h" | 8 #include "platform/geometry/LayoutRect.h" |
| 9 #include "wtf/HashMap.h" | 9 #include "platform/wtf/HashMap.h" |
| 10 #include "wtf/Vector.h" | 10 #include "platform/wtf/Vector.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class PaintLayer; | 14 class PaintLayer; |
| 15 | 15 |
| 16 typedef WTF::HashMap<const PaintLayer*, Vector<LayoutRect>> LayerHitTestRects; | 16 typedef WTF::HashMap<const PaintLayer*, Vector<LayoutRect>> LayerHitTestRects; |
| 17 | 17 |
| 18 } // namespace blink | 18 } // namespace blink |
| 19 | 19 |
| 20 #endif // LayerHitTestRects_h | 20 #endif // LayerHitTestRects_h |
| OLD | NEW |