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

Unified Diff: chrome/browser/importer/firefox_importer_utils_linux.cc

Issue 18501013: Move most importer code to chrome/utility/importer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: another gyp attempt Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/importer/firefox_importer_utils_linux.cc
diff --git a/chrome/browser/importer/firefox_importer_utils_linux.cc b/chrome/browser/importer/firefox_importer_utils_linux.cc
deleted file mode 100644
index 0162d05de05642128b8b1c49b532d41d3f619d99..0000000000000000000000000000000000000000
--- a/chrome/browser/importer/firefox_importer_utils_linux.cc
+++ /dev/null
@@ -1,21 +0,0 @@
-// 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"
-
-base::FilePath GetProfilesINI() {
- base::FilePath ini_file;
- // The default location of the profile folder containing user data is
- // under user HOME directory in .mozilla/firefox folder on Linux.
- base::FilePath home = file_util::GetHomeDir();
- if (!home.empty()) {
- ini_file = home.Append(".mozilla/firefox/profiles.ini");
- }
- if (base::PathExists(ini_file))
- return ini_file;
-
- return base::FilePath();
-}
« no previous file with comments | « chrome/browser/importer/firefox_importer_utils.cc ('k') | chrome/browser/importer/firefox_importer_utils_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698