summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-27 22:58:40 +0000
committerevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-27 22:58:40 +0000
commitf07cc2ebf950cb22c5c386f95a1be0292de4db3b (patch)
treea5d772adf3aea05f654227c4b37e96b3d272b6a1
parent1fc19e8bb6afa4a771c92eaa407c5838c01ab8c4 (diff)
downloadchromium_src-f07cc2ebf950cb22c5c386f95a1be0292de4db3b.zip
chromium_src-f07cc2ebf950cb22c5c386f95a1be0292de4db3b.tar.gz
chromium_src-f07cc2ebf950cb22c5c386f95a1be0292de4db3b.tar.bz2
Add a file I forgot in the last change.
Review URL: http://codereview.chromium.org/8637 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4035 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--base/file_version_info_linux.cc25
1 files changed, 25 insertions, 0 deletions
diff --git a/base/file_version_info_linux.cc b/base/file_version_info_linux.cc
new file mode 100644
index 0000000..69bfa4d
--- /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"";
+}