OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "base/file_version_info.h" |
| 6 |
| 7 #include <string> |
| 8 |
| 9 #include "base/logging.h" |
| 10 |
| 11 // TODO(port): Replace stubs with real implementations. |
| 12 |
| 13 FileVersionInfo::~FileVersionInfo() {} |
| 14 |
| 15 // static |
| 16 FileVersionInfo* FileVersionInfo::CreateFileVersionInfoForCurrentModule() { |
| 17 NOTIMPLEMENTED(); |
| 18 return NULL; |
| 19 } |
| 20 |
| 21 std::wstring FileVersionInfo::product_version() { |
| 22 // When un-stubbing, implementation in file_version_info.cc should be ok. |
| 23 NOTIMPLEMENTED(); |
| 24 return L""; |
| 25 } |
OLD | NEW |