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

Side by Side Diff: chrome/common/importer/safari_importer_utils.mm

Issue 19251002: move SafariImporter::CanImport to common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/common/importer/safari_importer_utils.h"
6
7 #include "base/file_util.h"
8 #include "base/files/file_path.h"
9 #include "chrome/common/importer/importer_data_types.h"
10
11 bool SafariImporterCanImport(const base::FilePath& library_dir,
12 uint16* services_supported) {
13 DCHECK(services_supported);
14 *services_supported = importer::NONE;
15
16 // Import features are toggled by the following:
17 // bookmarks import: existence of ~/Library/Safari/Bookmarks.plist file.
18 // history import: existence of ~/Library/Safari/History.plist file.
19 base::FilePath safari_dir = library_dir.Append("Safari");
20 base::FilePath bookmarks_path = safari_dir.Append("Bookmarks.plist");
21 base::FilePath history_path = safari_dir.Append("History.plist");
22
23 if (base::PathExists(bookmarks_path))
24 *services_supported |= importer::FAVORITES;
25 if (base::PathExists(history_path))
26 *services_supported |= importer::HISTORY;
27
28 return *services_supported != importer::NONE;
29 }
OLDNEW
« no previous file with comments | « chrome/common/importer/safari_importer_utils.h ('k') | chrome/utility/importer/safari_importer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698