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.
5 #ifndef CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_
6 #define CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_
13 #include "base/basictypes.h"
14 #include "base/compiler_specific.h"
15 #include "base/files/file_path.h"
16 #include "chrome/utility/importer/importer.h"
19 struct ImportedFaviconUsage
;
25 // Importer for Mozilla Firefox 3 and later.
26 // Firefox stores its persistent information in a system called places.
27 // http://wiki.mozilla.org/Places
28 class FirefoxImporter
: public Importer
{
33 virtual void StartImport(const importer::SourceProfile
& source_profile
,
35 ImporterBridge
* bridge
) OVERRIDE
;
38 typedef std::map
<int64
, std::set
<GURL
> > FaviconMap
;
40 virtual ~FirefoxImporter();
42 void ImportBookmarks();
43 void ImportPasswords();
45 void ImportSearchEngines();
46 // Import the user's home page, unless it is set to default home page as
47 // defined in browserconfig.properties.
48 void ImportHomepage();
49 void GetSearchEnginesXMLData(std::vector
<std::string
>* search_engine_data
);
50 void GetSearchEnginesXMLDataFromJSON(
51 std::vector
<std::string
>* search_engine_data
);
53 // The struct stores the information about a bookmark item.
55 typedef std::vector
<BookmarkItem
*> BookmarkList
;
57 // Gets the specific IDs of bookmark root node from |db|.
58 void LoadRootNodeID(sql::Connection
* db
, int* toolbar_folder_id
,
59 int* menu_folder_id
, int* unsorted_folder_id
);
61 // Loads all livemark IDs from database |db|.
62 void LoadLivemarkIDs(sql::Connection
* db
, std::set
<int>* livemark
);
64 // Gets the bookmark folder with given ID, and adds the entry in |list|
66 void GetTopBookmarkFolder(sql::Connection
* db
,
70 // Loads all children of the given folder, and appends them to the |list|.
71 void GetWholeBookmarkFolder(sql::Connection
* db
, BookmarkList
* list
,
72 size_t position
, bool* empty_folder
);
74 // Loads the favicons given in the map from the database, loads the data,
75 // and converts it into FaviconUsage structures.
76 void LoadFavicons(sql::Connection
* db
,
77 const FaviconMap
& favicon_map
,
78 std::vector
<ImportedFaviconUsage
>* favicons
);
80 base::FilePath source_path_
;
81 base::FilePath app_path_
;
84 // Stored because we can only access it from the UI thread.
88 DISALLOW_COPY_AND_ASSIGN(FirefoxImporter
);
91 #endif // CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_