// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/metrics/version_utils.h" #include "base/notreached.h" #include "build/branding_buildflags.h" #include "build/build_config.h" #include "components/version_info/version_info.h" #if BUILDFLAG(IS_ANDROID) #include "base/android/build_info.h" #endif namespace metrics { std::string GetVersionString() { … } SystemProfileProto::Channel AsProtobufChannel(version_info::Channel channel) { … } std::string GetAppPackageName() { … } } // namespace metrics