1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
base / version_info / version_string.h [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_VERSION_INFO_VERSION_STRING_H_
#define BASE_VERSION_INFO_VERSION_STRING_H_
#include <string>
namespace version_info {
// Returns a version string to be displayed in "About Chromium" dialog.
// |modifier| is a string representation of the channel with system specific
// information, e.g. "dev SyzyASan". It is appended to the returned version
// information if non-empty.
std::string GetVersionStringWithModifier(const std::string& modifier);
} // namespace version_info
#endif // BASE_VERSION_INFO_VERSION_STRING_H_