| 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 27 matching lines...) Expand all Loading... |
| 38 #include "platform/wtf/Allocator.h" | 38 #include "platform/wtf/Allocator.h" |
| 39 #include "platform/wtf/Noncopyable.h" | 39 #include "platform/wtf/Noncopyable.h" |
| 40 #include "platform/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 } // namespace base |
| 49 | 49 |
| 50 namespace blink { | 50 namespace blink { |
| 51 | 51 |
| 52 class GraphicsLayerDebugInfo final { | 52 class GraphicsLayerDebugInfo final { |
| 53 DISALLOW_NEW(); | 53 DISALLOW_NEW(); |
| 54 WTF_MAKE_NONCOPYABLE(GraphicsLayerDebugInfo); | 54 WTF_MAKE_NONCOPYABLE(GraphicsLayerDebugInfo); |
| 55 | 55 |
| 56 public: | 56 public: |
| 57 GraphicsLayerDebugInfo(); | 57 GraphicsLayerDebugInfo(); |
| 58 ~GraphicsLayerDebugInfo(); | 58 ~GraphicsLayerDebugInfo(); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 SquashingDisallowedReasons squashing_disallowed_reasons_; | 101 SquashingDisallowedReasons squashing_disallowed_reasons_; |
| 102 int owner_node_id_; | 102 int owner_node_id_; |
| 103 Vector<AnnotatedInvalidationRect> invalidations_; | 103 Vector<AnnotatedInvalidationRect> invalidations_; |
| 104 Vector<AnnotatedInvalidationRect> previous_invalidations_; | 104 Vector<AnnotatedInvalidationRect> previous_invalidations_; |
| 105 uint32_t main_thread_scrolling_reasons_; | 105 uint32_t main_thread_scrolling_reasons_; |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 } // namespace blink | 108 } // namespace blink |
| 109 | 109 |
| 110 #endif | 110 #endif |
| OLD | NEW |