OLD | NEW |
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/file_version_info.h" | 5 #include "base/file_version_info.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/logging.h" | |
10 | |
11 // TODO(port): This whole file is stubbed. We can't return NULL | 9 // TODO(port): This whole file is stubbed. We can't return NULL |
12 // because that is used as a catastrophic error code where the file | 10 // because that is used as a catastrophic error code where the file |
13 // doesn't exist or can't be opened. | 11 // doesn't exist or can't be opened. |
14 // | 12 // |
15 // See http://code.google.com/p/chromium/issues/detail?id=8132 for a discussion | 13 // See http://code.google.com/p/chromium/issues/detail?id=8132 for a discussion |
16 // on what we should do with this module. | 14 // on what we should do with this module. |
17 | 15 |
18 FileVersionInfo::FileVersionInfo() {} | 16 FileVersionInfo::FileVersionInfo() {} |
19 | 17 |
20 FileVersionInfo::~FileVersionInfo() {} | 18 FileVersionInfo::~FileVersionInfo() {} |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 return L""; | 78 return L""; |
81 } | 79 } |
82 | 80 |
83 std::wstring FileVersionInfo::last_change() { | 81 std::wstring FileVersionInfo::last_change() { |
84 return L"Last Thursday"; | 82 return L"Last Thursday"; |
85 } | 83 } |
86 | 84 |
87 bool FileVersionInfo::is_official_build() { | 85 bool FileVersionInfo::is_official_build() { |
88 return false; | 86 return false; |
89 } | 87 } |
OLD | NEW |