Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: chrome/browser/importer/firefox_importer_utils_mac.cc

Issue 160341: First cut at Firefox import on OSX + stubs for Safari import. (Closed)
Patch Set: Address Stuart's comments. Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698