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

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

Issue 2919005: Use file_util::GetHomeDir instead of getenv("HOME"). (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: Created 10 years, 5 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
« no previous file with comments | « base/nss_util.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/importer/firefox_importer_utils.h" 5 #include "chrome/browser/importer/firefox_importer_utils.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 8
9 FilePath GetProfilesINI() { 9 FilePath GetProfilesINI() {
10 FilePath ini_file; 10 FilePath ini_file;
11 // The default location of the profile folder containing user data is 11 // The default location of the profile folder containing user data is
12 // under user HOME directory in .mozilla/firefox folder on Linux. 12 // under user HOME directory in .mozilla/firefox folder on Linux.
13 const char *home = getenv("HOME"); 13 FilePath home = file_util::GetHomeDir();
14 if (home && home[0]) { 14 if (!home.empty()) {
15 ini_file = FilePath(home).Append(".mozilla/firefox/profiles.ini"); 15 ini_file = home.Append(".mozilla/firefox/profiles.ini");
16 } 16 }
17 if (file_util::PathExists(ini_file)) 17 if (file_util::PathExists(ini_file))
18 return ini_file; 18 return ini_file;
19 19
20 return FilePath(); 20 return FilePath();
21 } 21 }
OLDNEW
« no previous file with comments | « base/nss_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698