| 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 <memory> |
| 8 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
| 9 #include "core/css/CSSSelector.h" | 10 #include "core/css/CSSSelector.h" |
| 10 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
| 11 #include "platform/instrumentation/tracing/TraceEvent.h" | 12 #include "platform/instrumentation/tracing/TraceEvent.h" |
| 12 #include "platform/instrumentation/tracing/TracedValue.h" | 13 #include "platform/instrumentation/tracing/TracedValue.h" |
| 13 #include "wtf/Forward.h" | 14 #include "wtf/Forward.h" |
| 14 #include "wtf/Functional.h" | 15 #include "wtf/Functional.h" |
| 15 #include <memory> | |
| 16 | 16 |
| 17 namespace v8 { | 17 namespace v8 { |
| 18 class Function; | 18 class Function; |
| 19 template <typename T> | 19 template <typename T> |
| 20 class Local; | 20 class Local; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace WTF { | 23 namespace WTF { |
| 24 class TextPosition; | 24 class TextPosition; |
| 25 } | 25 } |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 const HitTestLocation&, | 383 const HitTestLocation&, |
| 384 const HitTestResult&); | 384 const HitTestResult&); |
| 385 } | 385 } |
| 386 | 386 |
| 387 CORE_EXPORT String toHexString(const void* p); | 387 CORE_EXPORT String toHexString(const void* p); |
| 388 CORE_EXPORT void setCallStack(TracedValue*); | 388 CORE_EXPORT void setCallStack(TracedValue*); |
| 389 | 389 |
| 390 } // namespace blink | 390 } // namespace blink |
| 391 | 391 |
| 392 #endif // !defined(InspectorTraceEvents_h) | 392 #endif // !defined(InspectorTraceEvents_h) |
| OLD | NEW |