// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_VIZ_SERVICE_DEBUGGER_VIZ_DEBUGGER_UNITTESTS_VIZ_DEBUGGER_INTERNAL_H_ #define COMPONENTS_VIZ_SERVICE_DEBUGGER_VIZ_DEBUGGER_UNITTESTS_VIZ_DEBUGGER_INTERNAL_H_ #include <stdint.h> #include <vector> #include "components/viz/service/debugger/viz_debugger.h" #if BUILDFLAG(USE_VIZ_DEBUGGER) namespace viz { // The VizDebuggerInternal class is used for creating a // VizDebugger instance for VizDebugger unit tests. class VizDebuggerInternal : public VizDebugger { … }; } // namespace viz #endif // BUILDFLAG(USE_VIZ_DEBUGGER) #endif // COMPONENTS_VIZ_SERVICE_DEBUGGER_VIZ_DEBUGGER_UNITTESTS_VIZ_DEBUGGER_INTERNAL_H_