summaryrefslogtreecommitdiffstats
path: root/base/file_version_info.h
diff options
context:
space:
mode:
authorerikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-12 17:33:52 +0000
committererikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-12 17:33:52 +0000
commit1265917f0c7b19bb242e21111032fb4f35b3767a (patch)
tree999c4397962987f16d9d20fd4e76f31ae52d397c /base/file_version_info.h
parent5513ee8e5373a2e7e52d2ec32ce2b608d6ac1415 (diff)
downloadchromium_src-1265917f0c7b19bb242e21111032fb4f35b3767a.zip
chromium_src-1265917f0c7b19bb242e21111032fb4f35b3767a.tar.gz
chromium_src-1265917f0c7b19bb242e21111032fb4f35b3767a.tar.bz2
I accidentally committed file_version_info. Since comments were relatively minor, I created a new CL rather than reverting the old one.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@722 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_version_info.h')
-rw-r--r--base/file_version_info.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/file_version_info.h b/base/file_version_info.h
index 94b3955..fcde901 100644
--- a/base/file_version_info.h
+++ b/base/file_version_info.h
@@ -54,7 +54,7 @@ class FileVersionInfo {
// returned object should be deleted when you are done with it.
static FileVersionInfo* CreateFileVersionInfo(const std::wstring& file_path);
- // Creates a FileVersionInfo for the current application. Returns NULL in case
+ // Creates a FileVersionInfo for the current module. Returns NULL in case
// of error. The returned object should be deleted when you are done with it.
static FileVersionInfo*
FileVersionInfo::CreateFileVersionInfoForCurrentModule();
@@ -102,9 +102,9 @@ class FileVersionInfo {
// This is a pointer into the data_ if it exists. Otherwise NULL.
VS_FIXEDFILEINFO* fixed_file_info_;
#elif defined(OS_MACOSX)
- FileVersionInfo(const std::wstring& file_path, NSBundle *bundle);
+ explicit FileVersionInfo(NSBundle *bundle);
+ explicit FileVersionInfo(const std::wstring& file_path);
- const std::wstring& file_path_;
NSBundle *bundle_;
#endif