| 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" |
| 9 |
| 8 #ifndef NDEBUG | 10 #ifndef NDEBUG |
| 9 namespace blink { | 11 namespace blink { |
| 10 | 12 |
| 11 class FrameView; | 13 class FrameView; |
| 12 | 14 |
| 13 void showTransformPropertyTree(const FrameView& rootFrame); | 15 CORE_EXPORT void showTransformPropertyTree(const FrameView& rootFrame); |
| 14 void showClipPropertyTree(const FrameView& rootFrame); | 16 CORE_EXPORT void showClipPropertyTree(const FrameView& rootFrame); |
| 15 void showEffectPropertyTree(const FrameView& rootFrame); | 17 CORE_EXPORT void showEffectPropertyTree(const FrameView& rootFrame); |
| 16 | 18 |
| 17 } // namespace blink | 19 } // namespace blink |
| 18 #endif | 20 #endif |
| 19 | 21 |
| 20 #endif // PaintPropertyTreePrinter_h | 22 #endif // PaintPropertyTreePrinter_h |
| OLD | NEW |