| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2009 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 // This file declares util functions for setup project. |
| 6 |
| 7 #ifndef CHROME_INSTALLER_SETUP_SETUP_UTIL_H_ |
| 8 #define CHROME_INSTALLER_SETUP_SETUP_UTIL_H_ |
| 9 |
| 10 #include "chrome/installer/util/version.h" |
| 11 |
| 12 namespace setup_util { |
| 13 // Find the version of Chrome from an install source directory. |
| 14 // Chrome_path should contain a version folder. |
| 15 // Returns the first version found or NULL if no version is found. |
| 16 installer::Version* GetVersionFromDir(const std::wstring& chrome_path); |
| 17 } // namespace setup_util |
| 18 |
| 19 #endif // CHROME_INSTALLER_SETUP_SETUP_UTIL_H_ |
| OLD | NEW |