Add a FrameHostMsg_BeginNavigation IPC
[chromium-blink-merge.git] / chrome / utility / importer / firefox_importer.h
blob0ad10d6093a3168bb7e3df05463ca7da4a6e48ce
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_
8 #include <map>
9 #include <set>
10 #include <string>
11 #include <vector>
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"
18 class GURL;
19 struct ImportedFaviconUsage;
21 namespace sql {
22 class Connection;
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 {
29 public:
30 FirefoxImporter();
32 // Importer:
33 virtual void StartImport(const importer::SourceProfile& source_profile,
34 uint16 items,
35 ImporterBridge* bridge) OVERRIDE;
37 private:
38 typedef std::map<int64, std::set<GURL> > FaviconMap;
40 virtual ~FirefoxImporter();
42 void ImportBookmarks();
43 void ImportPasswords();
44 void ImportHistory();
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.
54 struct BookmarkItem;
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|
65 // if successful.
66 void GetTopBookmarkFolder(sql::Connection* db,
67 int folder_id,
68 BookmarkList* list);
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_;
83 #if defined(OS_POSIX)
84 // Stored because we can only access it from the UI thread.
85 std::string locale_;
86 #endif
88 DISALLOW_COPY_AND_ASSIGN(FirefoxImporter);
91 #endif // CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_