/external/chromium/chrome/browser/importer/ |
H A D | profile_writer.h | 30 // ProfileWriter encapsulates profile for writing entries into it. 32 class ProfileWriter : public base::RefCountedThreadSafe<ProfileWriter> { class in inherits:base::RefCountedThreadSafe 61 explicit ProfileWriter(Profile* profile); 119 friend class base::RefCountedThreadSafe<ProfileWriter>; 121 virtual ~ProfileWriter(); 139 DISALLOW_COPY_AND_ASSIGN(ProfileWriter);
|
H A D | in_process_importer_bridge.cc | 17 InProcessImporterBridge::InProcessImporterBridge(ProfileWriter* writer, 24 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks, 30 writer_, &ProfileWriter::AddBookmarkEntry, bookmarks, 37 NewRunnableMethod(writer_, &ProfileWriter::AddHomepage, home_page)); 45 NewRunnableMethod(writer_, &ProfileWriter::AddIE7PasswordInfo, 54 NewRunnableMethod(writer_, &ProfileWriter::AddFavicons, favicons)); 62 NewRunnableMethod(writer_, &ProfileWriter::AddHistoryPage, 73 writer_, &ProfileWriter::AddKeywords, template_urls, 82 NewRunnableMethod(writer_, &ProfileWriter::AddPasswordForm, form));
|
H A D | external_process_importer_host.h | 15 class ProfileWriter; 36 ProfileWriter* writer,
|
H A D | profile_writer.cc | 19 ProfileWriter::BookmarkEntry::BookmarkEntry() 23 ProfileWriter::BookmarkEntry::~BookmarkEntry() {} 25 ProfileWriter::ProfileWriter(Profile* profile) : profile_(profile) {} function in class:ProfileWriter 27 bool ProfileWriter::BookmarkModelIsLoaded() const { 31 bool ProfileWriter::TemplateURLModelIsLoaded() const { 35 void ProfileWriter::AddPasswordForm(const webkit_glue::PasswordForm& form) { 40 void ProfileWriter::AddIE7PasswordInfo(const IE7PasswordInfo& info) { 45 void ProfileWriter::AddHistoryPage(const std::vector<history::URLRow>& page, 51 void ProfileWriter [all...] |
H A D | toolbar_importer.h | 123 std::vector<ProfileWriter::BookmarkEntry>* bookmarks, 135 ProfileWriter::BookmarkEntry* bookmark_entry, 142 ProfileWriter::BookmarkEntry* entry); 144 ProfileWriter::BookmarkEntry* entry); 146 ProfileWriter::BookmarkEntry* entry); 154 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks);
|
H A D | in_process_importer_bridge.h | 23 InProcessImporterBridge(ProfileWriter* writer, ImporterHost* host); 27 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks, 61 ProfileWriter* const writer_; // weak
|
H A D | safari_importer.h | 75 void ParseBookmarks(std::vector<ProfileWriter::BookmarkEntry>* bookmarks); 86 std::vector<ProfileWriter::BookmarkEntry>* out_bookmarks);
|
H A D | ie_importer.h | 29 typedef std::vector<ProfileWriter::BookmarkEntry> BookmarkVector;
|
H A D | importer_host.h | 77 ProfileWriter* writer, 129 scoped_refptr<ProfileWriter> writer_;
|
H A D | toolbar_importer.cc | 258 std::vector<ProfileWriter::BookmarkEntry> bookmarks; 288 std::vector<ProfileWriter::BookmarkEntry>* bookmarks, 309 ProfileWriter::BookmarkEntry bookmark_entry; 372 ProfileWriter::BookmarkEntry* bookmark_entry, 445 ProfileWriter::BookmarkEntry* entry) { 461 ProfileWriter::BookmarkEntry* entry) { 477 ProfileWriter::BookmarkEntry* entry) { 552 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks) { 556 int options = ProfileWriter::ADD_IF_UNIQUE | 557 (import_to_bookmark_bar() ? ProfileWriter [all...] |
H A D | external_process_importer_client.h | 82 // |options| is described in ProfileWriter::BookmarkOptions. 90 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks_group) 117 std::vector<ProfileWriter::BookmarkEntry> bookmarks_; 124 // Determines how bookmarks should be added (ProfileWriter::BookmarkOptions). 137 // to process_importer_host_, which calls the ProfileWriter to record the 152 // ProfileWriter. Released by ExternalProcessImporterClient in its
|
H A D | external_process_importer_bridge.cc | 29 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks,
|
H A D | external_process_importer_bridge.h | 33 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks,
|
H A D | external_process_importer_host.cc | 29 ProfileWriter* writer, 52 // pipe and feeds it to the ProfileWriter. The external process half of the
|
H A D | importer_bridge.h | 26 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks,
|
H A D | profile_import_process_client.h | 64 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks);
|
H A D | profile_import_process_client.cc | 58 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks) {
|
H A D | firefox2_importer.cc | 154 std::vector<ProfileWriter::BookmarkEntry>* bookmarks, 162 std::vector<ProfileWriter::BookmarkEntry> toolbar_bookmarks; 211 ProfileWriter::BookmarkEntry entry; 263 ProfileWriter::BookmarkEntry entry; 302 std::vector<ProfileWriter::BookmarkEntry> bookmarks, toolbar_bookmarks; 320 options |= ProfileWriter::IMPORT_TO_BOOKMARK_BAR; 322 options |= ProfileWriter::BOOKMARK_BAR_DISABLED;
|
H A D | firefox_importer_unittest.cc | 198 std::vector<ProfileWriter::BookmarkEntry> bookmarks; 203 std::vector<ProfileWriter::BookmarkEntry>::iterator it; 204 ProfileWriter::BookmarkEntry entry;
|
H A D | firefox2_importer.h | 52 std::vector<ProfileWriter::BookmarkEntry>* bookmarks,
|
H A D | importer_unittest.cc | 73 ProfileWriter* writer, 133 bool FindBookmarkEntry(const ProfileWriter::BookmarkEntry& entry, 184 class TestObserver : public ProfileWriter, 187 TestObserver() : ProfileWriter(NULL) { 550 class FirefoxObserver : public ProfileWriter, 553 FirefoxObserver() : ProfileWriter(NULL) { 749 class Firefox3Observer : public ProfileWriter, 753 : ProfileWriter(NULL), bookmark_count_(0), history_count_(0), 758 : ProfileWriter(NULL), bookmark_count_(0), history_count_(0),
|
H A D | external_process_importer_client.cc | 183 const std::vector<ProfileWriter::BookmarkEntry>& bookmarks_group) {
|
H A D | importer_host.cc | 102 ProfileWriter* writer,
|
/external/chromium/chrome/browser/bookmarks/ |
H A D | bookmark_html_writer_unittest.cc | 54 const ProfileWriter::BookmarkEntry& entry) { 87 ProfileWriter::BookmarkEntry entry; 106 void AssertBookmarkEntryEquals(const ProfileWriter::BookmarkEntry& entry, 224 std::vector<ProfileWriter::BookmarkEntry> parsed_bookmarks;
|
/external/chromium/chrome/browser/ui/webui/options/ |
H A D | import_data_handler.cc | 114 new ProfileWriter(profile), false);
|