blob: ef5d8da8e7d924c98d412ecb0f23f61bdc6cf2cf (
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
|
// 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>
#include "base/logging.h"
// TODO(port): Replace stubs with real implementations.
FileVersionInfo::~FileVersionInfo() {}
// static
FileVersionInfo* FileVersionInfo::CreateFileVersionInfoForCurrentModule() {
NOTIMPLEMENTED();
return NULL;
}
std::wstring FileVersionInfo::product_version() {
// When un-stubbing, implementation in file_version_info.cc should be ok.
NOTIMPLEMENTED();
return L"";
}
std::wstring FileVersionInfo::file_version() {
NOTIMPLEMENTED();
return L"";
}
std::wstring FileVersionInfo::last_change() {
NOTIMPLEMENTED();
return L"";
}
bool FileVersionInfo::is_official_build() {
NOTIMPLEMENTED();
return false;
}
|