HomeSort by relevance Sort by last modified time
    Searched refs:VersionInfo (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium/chrome/common/
chrome_version_info.cc 19 VersionInfo::VersionInfo() {
25 VersionInfo::~VersionInfo() {
28 bool VersionInfo::is_valid() const {
32 std::string VersionInfo::Name() const {
38 std::string VersionInfo::Version() const {
44 std::string VersionInfo::LastChange() const {
50 bool VersionInfo::IsOfficialBuild() const {
62 VersionInfo::VersionInfo()
    [all...]
chrome_version_info.h 18 // An instance of chrome::VersionInfo has information about the
20 class VersionInfo {
22 VersionInfo();
23 ~VersionInfo();
50 DISALLOW_COPY_AND_ASSIGN(VersionInfo);
  /external/chromium_org/chrome/common/extensions/features/
feature_channel.cc 7 using chrome::VersionInfo;
11 const VersionInfo::Channel kDefaultChannel = VersionInfo::CHANNEL_STABLE;
12 VersionInfo::Channel g_current_channel = kDefaultChannel;
18 VersionInfo::Channel GetCurrentChannel() {
22 void SetCurrentChannel(VersionInfo::Channel channel) {
26 VersionInfo::Channel GetDefaultChannel() {
feature_channel.h 13 chrome::VersionInfo::Channel GetCurrentChannel();
16 // process this should be chrome::VersionInfo::GetChannel(), and in the
18 void SetCurrentChannel(chrome::VersionInfo::Channel channel);
21 chrome::VersionInfo::Channel GetDefaultChannel();
26 explicit ScopedCurrentChannel(chrome::VersionInfo::Channel channel)
27 : original_channel_(chrome::VersionInfo::CHANNEL_UNKNOWN) {
37 chrome::VersionInfo::Channel original_channel_;
  /external/chromium_org/chrome/common/
chrome_version_info_chromeos.cc 9 static VersionInfo::Channel chromeos_channel = VersionInfo::CHANNEL_UNKNOWN;
12 std::string VersionInfo::GetVersionStringModifier() {
31 VersionInfo::Channel VersionInfo::GetChannel() {
36 void VersionInfo::SetChannel(const std::string& channel) {
chrome_version_info.cc 19 std::string VersionInfo::ProductNameAndVersionForUserAgent() const {
29 VersionInfo::VersionInfo() {
35 VersionInfo::~VersionInfo() {
38 bool VersionInfo::is_valid() const {
42 std::string VersionInfo::Name() const {
48 std::string VersionInfo::Version() const {
54 std::string VersionInfo::LastChange() const {
60 bool VersionInfo::IsOfficialBuild() const
    [all...]
chrome_version_info.h 17 // An instance of chrome::VersionInfo has information about the
19 class VersionInfo {
30 VersionInfo();
31 ~VersionInfo();
90 DISALLOW_COPY_AND_ASSIGN(VersionInfo);
chrome_version_info_android.cc 14 std::string VersionInfo::GetVersionStringModifier() {
27 VersionInfo::Channel VersionInfo::GetChannel() {
chrome_version_info_posix.cc 12 std::string VersionInfo::GetVersionStringModifier() {
44 VersionInfo::Channel VersionInfo::GetChannel() {
chrome_version_info_win.cc 18 std::string VersionInfo::GetVersionStringModifier() {
40 VersionInfo::Channel VersionInfo::GetChannel() {
  /external/chromium_org/chrome/browser/sync/glue/
chrome_report_unrecoverable_error.cc 16 chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
17 if (channel != chrome::VersionInfo::CHANNEL_CANARY &&
18 channel != chrome::VersionInfo::CHANNEL_DEV) {
device_info.cc 26 // Converts VersionInfo::Channel to string for user-agent string.
27 std::string ChannelToString(chrome::VersionInfo::Channel channel) {
29 case chrome::VersionInfo::CHANNEL_UNKNOWN:
31 case chrome::VersionInfo::CHANNEL_CANARY:
33 case chrome::VersionInfo::CHANNEL_DEV:
35 case chrome::VersionInfo::CHANNEL_BETA:
37 case chrome::VersionInfo::CHANNEL_STABLE:
150 const chrome::VersionInfo& version_info) {
172 DLOG(ERROR) << "Unable to create chrome::VersionInfo object";
232 chrome::VersionInfo version_info
    [all...]
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service_factory.cc 37 chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
38 if (channel == chrome::VersionInfo::CHANNEL_UNKNOWN ||
39 channel == chrome::VersionInfo::CHANNEL_DEV ||
40 channel == chrome::VersionInfo::CHANNEL_CANARY)
  /external/chromium_org/chrome/common/omaha_query_params/
omaha_query_params.cc 74 chrome::VersionInfo().Version().c_str());
129 switch (chrome::VersionInfo::GetChannel()) {
130 case chrome::VersionInfo::CHANNEL_STABLE:
133 case chrome::VersionInfo::CHANNEL_BETA:
136 case chrome::VersionInfo::CHANNEL_DEV:
139 case chrome::VersionInfo::CHANNEL_CANARY:
142 case chrome::VersionInfo::CHANNEL_UNKNOWN:
  /external/chromium_org/chrome/browser/chromeos/extensions/file_system_provider/
file_system_provider_apitest.cc 13 : current_channel_(chrome::VersionInfo::CHANNEL_UNKNOWN) {
  /external/chromium_org/chrome/browser/extensions/api/idltest/
idltest_apitest.cc 12 ExtensionIdltestApiTest() : trunk_(chrome::VersionInfo::CHANNEL_UNKNOWN) {}
  /external/chromium_org/chrome/browser/
sxs_linux.cc 29 chrome::VersionInfo::Channel product_channel(
30 chrome::VersionInfo::GetChannel());
32 case chrome::VersionInfo::CHANNEL_UNKNOWN: {
40 chrome::VersionInfo::GetVersionStringModifier());
44 case chrome::VersionInfo::CHANNEL_CANARY:
47 case chrome::VersionInfo::CHANNEL_DEV:
50 case chrome::VersionInfo::CHANNEL_BETA:
53 case chrome::VersionInfo::CHANNEL_STABLE:
chrome_browser_field_trials_mobile.cc 33 chrome::VersionInfo::GetChannel() == chrome::VersionInfo::CHANNEL_STABLE;
  /external/chromium_org/gpu/config/
gpu_control_list_version_info_unittest.cc 15 typedef GpuControlList::VersionInfo VersionInfo;
35 VersionInfo info(op[i], std::string(), string1, string2);
45 VersionInfo info("=", style[i], "8.9", std::string());
68 VersionInfo info("=", std::string(), number[i], std::string());
85 VersionInfo info(op[i], std::string(), "8.9", std::string());
92 VersionInfo info(op[i], std::string(), std::string(), std::string());
99 VersionInfo info(op[i], std::string(), "8.9", "9.0");
109 VersionInfo info("=", std::string(), number[i], std::string());
116 VersionInfo info("any", std::string(), std::string(), std::string())
    [all...]
  /external/apache-http/src/org/apache/http/util/
VersionInfo.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/util/VersionInfo.java $
57 public class VersionInfo {
96 protected VersionInfo(String pckg, String module,
175 sb.append("VersionInfo(")
204 public final static VersionInfo[] loadVersionInfo(String[] pckgs,
213 VersionInfo vi = loadVersionInfo(pckgs[i], clsldr);
218 return (VersionInfo[]) vil.toArray(new VersionInfo[vil.size()]);
234 public final static VersionInfo loadVersionInfo(final String pckg,
263 VersionInfo result = null
    [all...]
  /external/chromium_org/chrome/app/android/
chrome_android_initializer.cc 23 chrome::VersionInfo vi;
  /external/chromium_org/chrome/common/metrics/
metrics_log_base.cc 46 chrome::VersionInfo::Channel channel) {
48 case chrome::VersionInfo::CHANNEL_UNKNOWN:
50 case chrome::VersionInfo::CHANNEL_CANARY:
52 case chrome::VersionInfo::CHANNEL_DEV:
54 case chrome::VersionInfo::CHANNEL_BETA:
56 case chrome::VersionInfo::CHANNEL_STABLE:
79 AsProtobufChannel(chrome::VersionInfo::GetChannel()));
  /external/chromium_org/chrome/browser/profiles/
chrome_version_service.cc 37 chrome::VersionInfo version_info;
  /external/chromium/chrome/browser/
background_mode_manager_linux.cc 62 scoped_ptr<chrome::VersionInfo> version_info(new chrome::VersionInfo());
  /external/chromium_org/chrome/browser/background/
background_mode_manager_gtk.cc 32 scoped_ptr<chrome::VersionInfo> version_info(new chrome::VersionInfo());

Completed in 2255 milliseconds

1 2 3 4 5 6 7 8