blob: 3f6ec30039d8696c70a125e01141f46db33b1f8d [file] [log] [blame]
// Copyright 2026 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_SQLITE_VFS_CLIENT_H_
#define COMPONENTS_SQLITE_VFS_CLIENT_H_
namespace sqlite_vfs {
// An identifier of the client of a sandboxed SQLite file set that is used for
// metrics reporting.
// LINT.IfChange(VfsClient)
enum class Client {
kCodeCache,
kShaderCache,
kTest,
};
// LINT.ThenChange(//tools/metrics/histograms/metadata/persistent_cache/histograms.xml:VfsClient)
} // namespace sqlite_vfs
#endif // COMPONENTS_SQLITE_VFS_CLIENT_H_