| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 PaintPropertyTreePrinter_h | 5 #ifndef PaintPropertyTreePrinter_h |
| 6 #define PaintPropertyTreePrinter_h | 6 #define PaintPropertyTreePrinter_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "wtf/text/WTFString.h" | 9 #include "platform/wtf/text/WTFString.h" |
| 10 | 10 |
| 11 #if DCHECK_IS_ON() | 11 #if DCHECK_IS_ON() |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class FrameView; | 15 class FrameView; |
| 16 | 16 |
| 17 } // namespace blink | 17 } // namespace blink |
| 18 | 18 |
| 19 // Outside the blink namespace for ease of invocation from gdb. | 19 // Outside the blink namespace for ease of invocation from gdb. |
| 20 CORE_EXPORT void showAllPropertyTrees(const blink::FrameView& rootFrame); | 20 CORE_EXPORT void showAllPropertyTrees(const blink::FrameView& rootFrame); |
| 21 CORE_EXPORT void showTransformPropertyTree(const blink::FrameView& rootFrame); | 21 CORE_EXPORT void showTransformPropertyTree(const blink::FrameView& rootFrame); |
| 22 CORE_EXPORT void showClipPropertyTree(const blink::FrameView& rootFrame); | 22 CORE_EXPORT void showClipPropertyTree(const blink::FrameView& rootFrame); |
| 23 CORE_EXPORT void showEffectPropertyTree(const blink::FrameView& rootFrame); | 23 CORE_EXPORT void showEffectPropertyTree(const blink::FrameView& rootFrame); |
| 24 CORE_EXPORT void showScrollPropertyTree(const blink::FrameView& rootFrame); | 24 CORE_EXPORT void showScrollPropertyTree(const blink::FrameView& rootFrame); |
| 25 CORE_EXPORT String | 25 CORE_EXPORT String |
| 26 transformPropertyTreeAsString(const blink::FrameView& rootFrame); | 26 transformPropertyTreeAsString(const blink::FrameView& rootFrame); |
| 27 CORE_EXPORT String clipPropertyTreeAsString(const blink::FrameView& rootFrame); | 27 CORE_EXPORT String clipPropertyTreeAsString(const blink::FrameView& rootFrame); |
| 28 CORE_EXPORT String | 28 CORE_EXPORT String |
| 29 effectPropertyTreeAsString(const blink::FrameView& rootFrame); | 29 effectPropertyTreeAsString(const blink::FrameView& rootFrame); |
| 30 CORE_EXPORT String | 30 CORE_EXPORT String |
| 31 scrollPropertyTreeAsString(const blink::FrameView& rootFrame); | 31 scrollPropertyTreeAsString(const blink::FrameView& rootFrame); |
| 32 | 32 |
| 33 CORE_EXPORT String paintPropertyTreeGraph(const blink::FrameView&); | 33 CORE_EXPORT String paintPropertyTreeGraph(const blink::FrameView&); |
| 34 | 34 |
| 35 #endif // if DCHECK_IS_ON() | 35 #endif // if DCHECK_IS_ON() |
| 36 | 36 |
| 37 #endif // PaintPropertyTreePrinter_h | 37 #endif // PaintPropertyTreePrinter_h |
| OLD | NEW |