chrome_version_info.h revision 06741cbc25cd4227a9fba40dfd0273bfcc1a587a
1// Copyright (c) 2010 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5#ifndef CHROME_COMMON_CHROME_VERSION_INFO_H_ 6#define CHROME_COMMON_CHROME_VERSION_INFO_H_ 7 8class FileVersionInfo; 9 10namespace chrome { 11 12// Creates a FileVersionInfo for the app, Chrome. Returns NULL in case of 13// error. The returned object should be deleted when you are done with it. 14FileVersionInfo* GetChromeVersionInfo(); 15 16} // namespace chrome 17 18#endif // CHROME_COMMON_CHROME_VERSION_INFO_H_ 19