0

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
This commit is contained in:
evanm@google.com
2008-10-27 22:58:40 +00:00
parent 1fc19e8bb6
commit f07cc2ebf9

@ -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"";
}