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

Unified Diff: base/file_version_info_linux.cc

Issue 8637: Add a file I forgot in the last change. (Closed)
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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/file_version_info_linux.cc
diff --git a/base/file_version_info_linux.cc b/base/file_version_info_linux.cc
new file mode 100644
index 0000000000000000000000000000000000000000..69bfa4df13867b652a13e604c0ee93182fe0b8db
--- /dev/null
+++ b/base/file_version_info_linux.cc
@@ -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 | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698