// Copyright 2023 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_METRICS_ANDROID_METRICS_HELPER_H_ #define COMPONENTS_METRICS_ANDROID_METRICS_HELPER_H_ #include <string> #include "components/prefs/pref_registry_simple.h" #include "components/prefs/pref_service.h" namespace metrics { namespace prefs { constexpr char kVersionCodePref[] = …; } // Whether 64-bit and/or 32-bit apps can be installed on this device/OS. // // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. See CpuAbiBitnessSupport in enums.xml. enum class CpuAbiBitnessSupport { … }; // AndroidMetricsHelper is responsible for helping to log information related to // system-level information about the Android device as well as the process. class AndroidMetricsHelper { … }; } // namespace metrics #endif // COMPONENTS_METRICS_ANDROID_METRICS_HELPER_H_