1 // Copyright 2023 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 package org.chromium.base.test; 6 7 /** Placeholder class used when clang profiling is not enabled at building. */ 8 public class ClangProfiler { ClangProfiler()9 private ClangProfiler() {} 10 writeClangProfilingProfile()11 public static void writeClangProfilingProfile() {} 12 } 13