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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/base_lib.scons ('k') | net/base/x509_certificate_nss.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/file_version_info_linux.cc
===================================================================
--- base/file_version_info_linux.cc (revision 0)
+++ base/file_version_info_linux.cc (revision 0)
@@ -0,0 +1,25 @@
+// 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"";
+}
« 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