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

Unified 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: mac4 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/utility/importer/importer_creator.cc
diff --git a/chrome/utility/importer/importer_creator.cc b/chrome/utility/importer/importer_creator.cc
new file mode 100644
index 0000000000000000000000000000000000000000..988a5f593cf7263844545b4e78230d85ddf87e32
--- /dev/null
+++ b/chrome/utility/importer/importer_creator.cc
@@ -0,0 +1,45 @@
+// Copyright 2013 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/utility/importer/importer_creator.h"
+
+#include "base/logging.h"
+#include "chrome/utility/importer/bookmarks_file_importer.h"
+#include "chrome/utility/importer/firefox3_importer.h"
+
+#if defined(OS_WIN)
+#include "chrome/utility/importer/ie_importer.h"
+#endif
+
+#if defined(OS_MACOSX)
+#include <CoreFoundation/CoreFoundation.h>
+#include "base/mac/foundation_util.h"
+#include "chrome/utility/importer/safari_importer.h"
+#endif
+
+namespace importer {
+
+Importer* CreateImporterByType(ImporterType type) {
+ switch (type) {
+#if defined(OS_WIN)
+ case TYPE_IE:
+ return new IEImporter();
+#endif
+ case TYPE_BOOKMARKS_FILE:
+ return new BookmarksFileImporter();
+ case TYPE_FIREFOX3:
+ return new Firefox3Importer();
+#if defined(OS_MACOSX)
+ case TYPE_SAFARI:
+ return new SafariImporter(base::mac::GetUserLibraryPath());
+#endif
+ default:
+ NOTREACHED();
+ return NULL;
+ }
+ NOTREACHED();
gab 2013/07/08 15:18:08 I think these last 2 lines can be removed.
scottmg 2013/07/09 16:20:49 Done.
+ return NULL;
+}
+
+} // namespace importer

Powered by Google App Engine
This is Rietveld 408576698