| 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 "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/css/CSSSelector.h" | 9 #include "core/css/CSSSelector.h" |
| 10 #include "platform/EventTracer.h" | 10 #include "platform/EventTracer.h" |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 extern const char ImageChanged[]; | 137 extern const char ImageChanged[]; |
| 138 extern const char LineBoxesChanged[]; | 138 extern const char LineBoxesChanged[]; |
| 139 extern const char SliderValueChanged[]; | 139 extern const char SliderValueChanged[]; |
| 140 extern const char AncestorMarginCollapsing[]; | 140 extern const char AncestorMarginCollapsing[]; |
| 141 extern const char FieldsetChanged[]; | 141 extern const char FieldsetChanged[]; |
| 142 extern const char TextAutosizing[]; | 142 extern const char TextAutosizing[]; |
| 143 extern const char SvgResourceInvalidated[]; | 143 extern const char SvgResourceInvalidated[]; |
| 144 extern const char FloatDescendantChanged[]; | 144 extern const char FloatDescendantChanged[]; |
| 145 extern const char CountersChanged[]; | 145 extern const char CountersChanged[]; |
| 146 extern const char GridChanged[]; | 146 extern const char GridChanged[]; |
| 147 extern const char MenuHeightChanged[]; | 147 extern const char MenuOptionsChanged[]; |
| 148 extern const char MenuWidthChanged[]; | |
| 149 extern const char RemovedFromLayout[]; | 148 extern const char RemovedFromLayout[]; |
| 150 extern const char AddedToLayout[]; | 149 extern const char AddedToLayout[]; |
| 151 extern const char TableChanged[]; | 150 extern const char TableChanged[]; |
| 152 extern const char PaddingChanged[]; | 151 extern const char PaddingChanged[]; |
| 153 extern const char TextControlChanged[]; | 152 extern const char TextControlChanged[]; |
| 154 // FIXME: This is too generic, we should be able to split out transform and | 153 // FIXME: This is too generic, we should be able to split out transform and |
| 155 // size related invalidations. | 154 // size related invalidations. |
| 156 extern const char SvgChanged[]; | 155 extern const char SvgChanged[]; |
| 157 extern const char ScrollbarChanged[]; | 156 extern const char ScrollbarChanged[]; |
| 158 } // namespace LayoutInvalidationReason | 157 } // namespace LayoutInvalidationReason |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 std::unique_ptr<TracedValue> endData(const HitTestRequest&, const HitTestLocatio
n&, const HitTestResult&); | 341 std::unique_ptr<TracedValue> endData(const HitTestRequest&, const HitTestLocatio
n&, const HitTestResult&); |
| 343 } | 342 } |
| 344 | 343 |
| 345 CORE_EXPORT String toHexString(const void* p); | 344 CORE_EXPORT String toHexString(const void* p); |
| 346 CORE_EXPORT void setCallStack(TracedValue*); | 345 CORE_EXPORT void setCallStack(TracedValue*); |
| 347 | 346 |
| 348 } // namespace blink | 347 } // namespace blink |
| 349 | 348 |
| 350 | 349 |
| 351 #endif // !defined(InspectorTraceEvents_h) | 350 #endif // !defined(InspectorTraceEvents_h) |
| OLD | NEW |