| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 DisplayItem_h | 5 #ifndef DisplayItem_h |
| 6 #define DisplayItem_h | 6 #define DisplayItem_h |
| 7 | 7 |
| 8 #include "platform/PlatformExport.h" | 8 #include "platform/PlatformExport.h" |
| 9 #include "platform/graphics/ContiguousContainer.h" | 9 #include "platform/graphics/ContiguousContainer.h" |
| 10 #include "platform/graphics/paint/DisplayItemClient.h" | 10 #include "platform/graphics/paint/DisplayItemClient.h" |
| 11 #include "wtf/Allocator.h" | 11 #include "platform/wtf/Allocator.h" |
| 12 #include "wtf/Assertions.h" | 12 #include "platform/wtf/Assertions.h" |
| 13 #include "wtf/Noncopyable.h" | 13 #include "platform/wtf/Noncopyable.h" |
| 14 | 14 |
| 15 #ifndef NDEBUG | 15 #ifndef NDEBUG |
| 16 #include "wtf/text/StringBuilder.h" | 16 #include "platform/wtf/text/StringBuilder.h" |
| 17 #include "wtf/text/WTFString.h" | 17 #include "platform/wtf/text/WTFString.h" |
| 18 #endif | 18 #endif |
| 19 | 19 |
| 20 class SkPictureGpuAnalyzer; | 20 class SkPictureGpuAnalyzer; |
| 21 | 21 |
| 22 namespace blink { | 22 namespace blink { |
| 23 | 23 |
| 24 class GraphicsContext; | 24 class GraphicsContext; |
| 25 class IntRect; | 25 class IntRect; |
| 26 class WebDisplayItemList; | 26 class WebDisplayItemList; |
| 27 | 27 |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; | 410 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; |
| 411 #endif | 411 #endif |
| 412 | 412 |
| 413 private: | 413 private: |
| 414 bool isEnd() const final { return true; } | 414 bool isEnd() const final { return true; } |
| 415 }; | 415 }; |
| 416 | 416 |
| 417 } // namespace blink | 417 } // namespace blink |
| 418 | 418 |
| 419 #endif // DisplayItem_h | 419 #endif // DisplayItem_h |
| OLD | NEW |