Index: chrome/browser/importer/firefox_importer_utils.h |
diff --git a/chrome/browser/importer/firefox_importer_utils.h b/chrome/browser/importer/firefox_importer_utils.h |
index 41b88fac340af4ea5b5d2ce2250eddc905da9e12..68de8376e490fcff967e9f42cfc0a013b19115cd 100644 |
--- a/chrome/browser/importer/firefox_importer_utils.h |
+++ b/chrome/browser/importer/firefox_importer_utils.h |
@@ -25,7 +25,15 @@ int GetCurrentFirefoxMajorVersionFromRegistry(); |
// Detects where Firefox lives. Returns a empty string if Firefox |
// is not installed. |
std::wstring GetFirefoxInstallPathFromRegistry(); |
-#endif |
+#endif // OS_WIN |
+ |
+#if defined(OS_MACOSX) |
+ |
+// Get the directory in which the Firefox .dylibs live, we need to load these |
+// in order to decoded FF profile passwords. |
+// The Path is usuall FF App Bundle/Contents/Mac OS/ |
+bool GetFirefoxDylibPath(FilePath *ff_dylib_dir); |
John Grabowski
2009/08/21 01:13:18
Why return bool and not return FilePath?
FilePath:
|
+#endif // OS_MACOSX |
// Detects version of Firefox and installation path from given Firefox profile |
bool GetFirefoxVersionAndPathFromProfile(const std::wstring& profile_path, |