0
Files
src/ash/debug.h
Avi Drissman 3a215d1e60 Update copyright headers in ash/
The methodology used to generate this CL is documented in
https://crbug.com/1098010#c21.

No-Try: true
No-Presubmit: true
Bug: 1098010
Change-Id: I1d041830fce905cf3682306ab435f4356d528c0e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3879644
Reviewed-by: Mark Mentovai <mark@chromium.org>
Auto-Submit: Avi Drissman <avi@chromium.org>
Commit-Queue: Avi Drissman <avi@chromium.org>
Owners-Override: Avi Drissman <avi@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1044133}
2022-09-07 19:43:09 +00:00

23 lines
513 B
C++

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_DEBUG_H_
#define ASH_DEBUG_H_
#include "ash/ash_export.h"
namespace ash {
namespace debug {
// Toggles debugging features controlled by
// cc::LayerTreeDebugState.
ASH_EXPORT void ToggleShowDebugBorders();
ASH_EXPORT void ToggleShowFpsCounter();
ASH_EXPORT void ToggleShowPaintRects();
} // namespace debug
} // namespace ash
#endif // ASH_DEBUG_H_