diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 23:02:11 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 23:02:11 +0000 |
commit | 1eeb5e08580730cb2a0a2751f578dbc4e6402369 (patch) | |
tree | 8c630e2df02da8815f0ae5984bb708e8186af400 /chrome/common/chrome_version_info.h | |
parent | 4b783b4849481423eea0c1a99eb56f1b218ec4ba (diff) | |
download | chromium_src-1eeb5e08580730cb2a0a2751f578dbc4e6402369.zip chromium_src-1eeb5e08580730cb2a0a2751f578dbc4e6402369.tar.gz chromium_src-1eeb5e08580730cb2a0a2751f578dbc4e6402369.tar.bz2 |
Cleanup: Break another common->app dependency.
BUG=46666
TEST=none
Review URL: http://codereview.chromium.org/3007008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53113 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_version_info.h')
-rw-r--r-- | chrome/common/chrome_version_info.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chrome/common/chrome_version_info.h b/chrome/common/chrome_version_info.h new file mode 100644 index 0000000..e3bfad71 --- /dev/null +++ b/chrome/common/chrome_version_info.h @@ -0,0 +1,18 @@ +// Copyright (c) 2010 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. + +#ifndef CHROME_COMMON_CHROME_VERSION_INFO_H_ +#define CHROME_COMMON_CHROME_VERSION_INFO_H_ + +class FileVersionInfo; + +namespace chrome { + +// Creates a FileVersionInfo for the app, Chrome. Returns NULL in case of +// error. The returned object should be deleted when you are done with it. +FileVersionInfo* GetChromeVersionInfo(); + +} // namespace chrome + +#endif // CHROME_COMMON_CHROME_VERSION_INFO_H_ |