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 #include "chrome/browser/importer/firefox_importer_utils.h" | |
6 | |
7 #include "base/file_util.h" | |
8 | |
9 FilePath GetProfilesINI() { | |
10 FilePath ini_file; | |
11 // ~/Library/Application Support/Firefox on OS X. | |
12 // This should be changed to NSSearchPathForDirectoriesInDomains(). | |
13 // See bug http://code.google.com/p/chromium/issues/detail?id=15455 | |
14 const char *home = getenv("HOME"); | |
15 if (home && home[0]) { | |
16 ini_file = FilePath(home).Append( | |
17 "Library/Application Support/Firefox/profiles.ini"); | |
18 } | |
19 if (file_util::PathExists(ini_file)) | |
20 return ini_file; | |
21 | |
22 return FilePath(); | |
23 } | |
OLD | NEW |