debug.h 539 B

12345678910111213141516171819202122
  1. // Copyright (c) 2013 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef ASH_DEBUG_H_
  5. #define ASH_DEBUG_H_
  6. #include "ash/ash_export.h"
  7. namespace ash {
  8. namespace debug {
  9. // Toggles debugging features controlled by
  10. // cc::LayerTreeDebugState.
  11. ASH_EXPORT void ToggleShowDebugBorders();
  12. ASH_EXPORT void ToggleShowFpsCounter();
  13. ASH_EXPORT void ToggleShowPaintRects();
  14. } // namespace debug
  15. } // namespace ash
  16. #endif // ASH_DEBUG_H_