Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: base/file_version_info_linux.cc

Issue 21366: Add a couple more stubs to file_version_info_linux.cc. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/base_lib.scons ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « base/base_lib.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698