| 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 InspectorTraceEvents_h | 5 #ifndef InspectorTraceEvents_h |
| 6 #define InspectorTraceEvents_h | 6 #define InspectorTraceEvents_h |
| 7 | 7 |
| 8 #include "platform/EventTracer.h" | 8 #include "platform/EventTracer.h" |
| 9 #include "platform/TraceEvent.h" | 9 #include "platform/TraceEvent.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 public: | 38 public: |
| 39 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(FrameView*
); | 39 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(FrameView*
); |
| 40 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> endData(RenderObject
* rootForThisLayout); | 40 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> endData(RenderObject
* rootForThisLayout); |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 class InspectorStyleRecalcInvalidationTrackingEvent { | 43 class InspectorStyleRecalcInvalidationTrackingEvent { |
| 44 public: | 44 public: |
| 45 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Node*, const St
yleChangeReasonForTracing&); | 45 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Node*, const St
yleChangeReasonForTracing&); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 String descendantInvalidationSetToIdString(const DescendantInvalidationSet&); |
| 49 |
| 48 class InspectorStyleInvalidatorInvalidateEvent { | 50 class InspectorStyleInvalidatorInvalidateEvent { |
| 49 public: | 51 public: |
| 50 static const char ElementHasPendingInvalidationList[]; | 52 static const char ElementHasPendingInvalidationList[]; |
| 51 static const char InvalidateCustomPseudo[]; | 53 static const char InvalidateCustomPseudo[]; |
| 52 static const char InvalidationSetMatchedAttribute[]; | 54 static const char InvalidationSetMatchedAttribute[]; |
| 53 static const char InvalidationSetMatchedClass[]; | 55 static const char InvalidationSetMatchedClass[]; |
| 54 static const char InvalidationSetMatchedId[]; | 56 static const char InvalidationSetMatchedId[]; |
| 55 static const char InvalidationSetMatchedTagName[]; | 57 static const char InvalidationSetMatchedTagName[]; |
| 56 static const char PreventStyleSharingForParent[]; | 58 static const char PreventStyleSharingForParent[]; |
| 57 | 59 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 224 |
| 223 class InspectorTracingSessionIdForWorkerEvent { | 225 class InspectorTracingSessionIdForWorkerEvent { |
| 224 public: | 226 public: |
| 225 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, WorkerThread*); | 227 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, WorkerThread*); |
| 226 }; | 228 }; |
| 227 | 229 |
| 228 } // namespace blink | 230 } // namespace blink |
| 229 | 231 |
| 230 | 232 |
| 231 #endif // !defined(InspectorTraceEvents_h) | 233 #endif // !defined(InspectorTraceEvents_h) |
| OLD | NEW |