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

Side by Side Diff: chrome/utility/importer/importer_creator.cc

Issue 18501013: Move most importer code to chrome/utility/importer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CanImport 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/utility/importer/importer_creator.h"
6
7 #include "base/logging.h"
8 #include "chrome/utility/importer/bookmarks_file_importer.h"
9 #include "chrome/utility/importer/firefox3_importer.h"
10
11 #if defined(OS_WIN)
12 #include "chrome/utility/importer/ie_importer_win.h"
13 #endif
14
15 #if defined(OS_MACOSX)
16 #include <CoreFoundation/CoreFoundation.h>
17 #include "base/mac/foundation_util.h"
gab 2013/07/10 13:40:44 I think we usually put an empty line between syste
scottmg 2013/07/15 16:06:01 Done.
18 #include "chrome/utility/importer/safari_importer.h"
19 #endif
20
21 namespace importer {
22
23 Importer* CreateImporterByType(ImporterType type) {
24 switch (type) {
25 #if defined(OS_WIN)
26 case TYPE_IE:
27 return new IEImporter();
28 #endif
29 case TYPE_BOOKMARKS_FILE:
30 return new BookmarksFileImporter();
31 case TYPE_FIREFOX3:
32 return new Firefox3Importer();
33 #if defined(OS_MACOSX)
34 case TYPE_SAFARI:
35 return new SafariImporter(base::mac::GetUserLibraryPath());
36 #endif
37 default:
38 NOTREACHED();
39 return NULL;
40 }
41 }
42
43 } // namespace importer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698