blob: 3cf7577e8f58de2399019d50d57e6f6ddb87919a [file] [log] [blame]
Rasika Navarange1f582bc2023-07-19 15:50:461-- Copyright 2023 The Chromium Authors
Rasika Navarange8bcfb6712023-06-14 10:31:252-- Use of this source code is governed by a BSD-style license that can be
3-- found in the LICENSE file.
4
5-- Returns hardware class of the device, often use to find device brand
6-- and model.
Rasika Navarange0e3d9b62023-08-23 11:45:037CREATE PERFETTO FUNCTION chrome_hardware_class()
Rasika Navarange156094f62023-11-09 18:13:098-- Hardware class name.
Rasika Navarange1f582bc2023-07-19 15:50:469RETURNS STRING AS
10SELECT
11 str_value
Victor Hugo Vianna Silvae30216c2025-03-17 19:03:4812FROM metadata
13WHERE
14 name = "cr-hardware-class";