channel_info.cc 530 B

1234567891011121314151617
  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "chrome/common/channel_info.h"
  5. #include "components/version_info/version_info.h"
  6. #include "components/version_info/version_string.h"
  7. namespace chrome {
  8. std::string GetVersionString(WithExtendedStable with_extended_stable) {
  9. return version_info::GetVersionStringWithModifier(
  10. GetChannelName(with_extended_stable));
  11. }
  12. } // namespace chrome