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

Side by Side Diff: base/file_version_info_linux.cc

Issue 7974: Port a few test_shell_tests. Now it runs 45 of them.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 2 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') | net/base/x509_certificate_nss.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « base/base_lib.scons ('k') | net/base/x509_certificate_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698