blob: 59d425a840840ddcdf54fdaaa71e283f60020b31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
// Copyright (c) 2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/file_version_info.h"
#include <string>
// TODO(port): This whole file is stubbed. We can't return NULL
// because that is used as a catastrophic error code where the file
// doesn't exist or can't be opened.
//
// See http://code.google.com/p/chromium/issues/detail?id=8132 for a discussion
// on what we should do with this module.
FileVersionInfo::FileVersionInfo() {}
FileVersionInfo::~FileVersionInfo() {}
// static
FileVersionInfo* FileVersionInfo::CreateFileVersionInfoForCurrentModule() {
return new FileVersionInfo();
}
std::wstring FileVersionInfo::company_name() {
return L"";
}
std::wstring FileVersionInfo::company_short_name() {
return L"";
}
std::wstring FileVersionInfo::product_name() {
return L"";
}
std::wstring FileVersionInfo::product_short_name() {
return L"";
}
std::wstring FileVersionInfo::internal_name() {
return L"";
}
std::wstring FileVersionInfo::product_version() {
return L"0.1.2.3.4.5.6-lie";
}
std::wstring FileVersionInfo::private_build() {
return L"";
}
std::wstring FileVersionInfo::special_build() {
return L"";
}
std::wstring FileVersionInfo::comments() {
return L"";
}
std::wstring FileVersionInfo::original_filename() {
return L"";
}
std::wstring FileVersionInfo::file_description() {
return L"";
}
std::wstring FileVersionInfo::file_version() {
return L"0.1.2.3.4.5.6-lie";
}
std::wstring FileVersionInfo::legal_copyright() {
return L"";
}
std::wstring FileVersionInfo::legal_trademarks() {
return L"";
}
std::wstring FileVersionInfo::last_change() {
return L"Last Thursday";
}
bool FileVersionInfo::is_official_build() {
return false;
}
|