| 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" | 9 #include "base/logging.h" |
| 10 | 10 |
| 11 // TODO(port): Replace stubs with real implementations. | 11 // TODO(port): Replace stubs with real implementations. |
| 12 | 12 |
| 13 FileVersionInfo::~FileVersionInfo() {} | 13 FileVersionInfo::~FileVersionInfo() {} |
| 14 | 14 |
| 15 // static | 15 // static |
| 16 FileVersionInfo* FileVersionInfo::CreateFileVersionInfoForCurrentModule() { | 16 FileVersionInfo* FileVersionInfo::CreateFileVersionInfoForCurrentModule() { |
| 17 NOTIMPLEMENTED(); | 17 NOTIMPLEMENTED(); |
| 18 return NULL; | 18 return NULL; |
| 19 } | 19 } |
| 20 | 20 |
| 21 std::wstring FileVersionInfo::product_version() { | 21 std::wstring FileVersionInfo::product_version() { |
| 22 // When un-stubbing, implementation in file_version_info.cc should be ok. | 22 // When un-stubbing, implementation in file_version_info.cc should be ok. |
| 23 NOTIMPLEMENTED(); | 23 NOTIMPLEMENTED(); |
| 24 return L""; | 24 return L""; |
| 25 } | 25 } |
| 26 | 26 |
| 27 std::wstring FileVersionInfo::file_version() { |
| 28 NOTIMPLEMENTED(); |
| 29 return L""; |
| 30 } |
| 31 |
| 32 std::wstring FileVersionInfo::last_change() { |
| 33 NOTIMPLEMENTED(); |
| 34 return L""; |
| 35 } |
| 36 |
| 27 bool FileVersionInfo::is_official_build() { | 37 bool FileVersionInfo::is_official_build() { |
| 28 NOTIMPLEMENTED(); | 38 NOTIMPLEMENTED(); |
| 29 return false; | 39 return false; |
| 30 } | 40 } |
| OLD | NEW |