blob: cb815dc431ade65e65b30db8b44f2ac7a2bf6058 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/importer/firefox_importer_utils.h"
#include "base/file_util.h"
FilePath GetProfilesINI() {
FilePath ini_file;
// The default location of the profile folder containing user data is
// under user HOME directory in .mozilla/firefox folder on Linux.
const char *home = getenv("HOME");
if (home && home[0]) {
ini_file = FilePath(home).Append(".mozilla/firefox/profiles.ini");
}
if (file_util::PathExists(ini_file))
return ini_file;
return FilePath();
}
|