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

Unified Diff: chrome/browser/importer/firefox_importer_utils_mac.mm

Issue 160341: First cut at Firefox import on OSX + stubs for Safari import. (Closed)
Patch Set: Address Stuart's comments. Created 11 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_mac.mm
diff --git a/chrome/browser/importer/firefox_importer_utils_mac.mm b/chrome/browser/importer/firefox_importer_utils_mac.mm
new file mode 100644
index 0000000000000000000000000000000000000000..5fd24b006a5e32ae10a90647590df553aaaad3a0
--- /dev/null
+++ b/chrome/browser/importer/firefox_importer_utils_mac.mm
@@ -0,0 +1,31 @@
+// 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 <Cocoa/Cocoa.h>
+
+#include "chrome/browser/importer/firefox_importer_utils.h"
+
+#include "base/file_util.h"
+
+FilePath GetProfilesINI() {
+ FilePath ini_file;
+ NSArray* dirs =
+ NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory,
+ NSUserDomainMask, YES);
+ if ([dirs count]) {
+ NSString* app_support_dir = [dirs objectAtIndex:0];
+ NSString* firefox_dir = [app_support_dir
+ stringByAppendingPathComponent:@"Firefox"];
+ NSString* profiles_ini = [firefox_dir
+ stringByAppendingPathComponent:@"profiles.ini"];
+ if (profiles_ini) {
+ ini_file = FilePath([profiles_ini fileSystemRepresentation]);
+ }
+ }
+
+ if (file_util::PathExists(ini_file))
+ return ini_file;
+
+ return FilePath();
+}

Powered by Google App Engine
This is Rietveld 408576698