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

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

Issue 6046009: Move base/mac_util.h to base/mac and use the base::mac namespace.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 12 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
« no previous file with comments | « chrome/browser/history/thumbnail_database.cc ('k') | chrome/browser/memory_details_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/importer_list.cc
===================================================================
--- chrome/browser/importer/importer_list.cc (revision 70358)
+++ chrome/browser/importer/importer_list.cc (working copy)
@@ -23,7 +23,7 @@
#include "chrome/browser/password_manager/ie7_password.h"
#endif
#if defined(OS_MACOSX)
-#include "base/mac_util.h"
+#include "base/mac/mac_util.h"
#include "chrome/browser/importer/safari_importer.h"
#endif
@@ -46,7 +46,7 @@
#if defined(OS_MACOSX)
void DetectSafariProfiles(std::vector<importer::ProfileInfo*>* profiles) {
uint16 items = importer::NONE;
- if (!SafariImporter::CanImport(mac_util::GetUserLibraryPath(), &items))
+ if (!SafariImporter::CanImport(base::mac::GetUserLibraryPath(), &items))
return;
importer::ProfileInfo* safari = new importer::ProfileInfo();
@@ -133,7 +133,7 @@
return new Toolbar5Importer();
#if defined(OS_MACOSX)
case importer::SAFARI:
- return new SafariImporter(mac_util::GetUserLibraryPath());
+ return new SafariImporter(base::mac::GetUserLibraryPath());
#endif // OS_MACOSX
case importer::NO_PROFILE_TYPE:
NOTREACHED();
« no previous file with comments | « chrome/browser/history/thumbnail_database.cc ('k') | chrome/browser/memory_details_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698