
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}
23 lines
513 B
C++
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_
|