Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / common / mac / app_mode_chrome_locator.h
index b608e9c..5b95ee7 100644 (file)
@@ -21,16 +21,18 @@ namespace app_mode {
 // Returns true if the bundle was found, false otherwise.
 bool FindBundleById(NSString* bundle_id, base::FilePath* out_bundle);
 
-// Given the path to the Chrome bundle, read the following information:
+// Given the path to the Chrome bundle, and an optional framework version, read
+// the following information:
 // |executable_path| - Path to the Chrome executable.
-// |raw_version_str| - Chrome version.
 // |version_path| - |chrome_bundle|/Contents/Versions/|raw_version_str|/
 // |framework_shlib_path| - Path to the chrome framework's shared library (not
 //                          the framework directory).
+// If |version_str| is not given, this will read the current Chrome version from
+// the bundle's plist.
 // Returns true if all information read succesfuly, false otherwise.
 bool GetChromeBundleInfo(const base::FilePath& chrome_bundle,
+                         const std::string& version_str,
                          base::FilePath* executable_path,
-                         base::string16* raw_version_str,
                          base::FilePath* version_path,
                          base::FilePath* framework_shlib_path);