| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef GraphicsLayerDebugInfo_h | 31 #ifndef GraphicsLayerDebugInfo_h |
| 32 #define GraphicsLayerDebugInfo_h | 32 #define GraphicsLayerDebugInfo_h |
| 33 | 33 |
| 34 #include "platform/geometry/FloatRect.h" | 34 #include "platform/geometry/FloatRect.h" |
| 35 #include "platform/graphics/CompositingReasons.h" | 35 #include "platform/graphics/CompositingReasons.h" |
| 36 #include "platform/graphics/PaintInvalidationReason.h" | 36 #include "platform/graphics/PaintInvalidationReason.h" |
| 37 #include "platform/graphics/SquashingDisallowedReasons.h" | 37 #include "platform/graphics/SquashingDisallowedReasons.h" |
| 38 #include "wtf/Allocator.h" | 38 #include "platform/wtf/Allocator.h" |
| 39 #include "wtf/Noncopyable.h" | 39 #include "platform/wtf/Noncopyable.h" |
| 40 #include "wtf/Vector.h" | 40 #include "platform/wtf/Vector.h" |
| 41 | 41 |
| 42 #include <memory> | 42 #include <memory> |
| 43 | 43 |
| 44 namespace base { | 44 namespace base { |
| 45 namespace trace_event { | 45 namespace trace_event { |
| 46 class TracedValue; | 46 class TracedValue; |
| 47 } | 47 } |
| 48 } | 48 } |
| 49 | 49 |
| 50 namespace blink { | 50 namespace blink { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 SquashingDisallowedReasons m_squashingDisallowedReasons; | 101 SquashingDisallowedReasons m_squashingDisallowedReasons; |
| 102 int m_ownerNodeId; | 102 int m_ownerNodeId; |
| 103 Vector<AnnotatedInvalidationRect> m_invalidations; | 103 Vector<AnnotatedInvalidationRect> m_invalidations; |
| 104 Vector<AnnotatedInvalidationRect> m_previousInvalidations; | 104 Vector<AnnotatedInvalidationRect> m_previousInvalidations; |
| 105 uint32_t m_mainThreadScrollingReasons; | 105 uint32_t m_mainThreadScrollingReasons; |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 } // namespace blink | 108 } // namespace blink |
| 109 | 109 |
| 110 #endif | 110 #endif |
| OLD | NEW |