HomeSort by relevance Sort by last modified time
    Searched refs:favicons (Results 1 - 16 of 16) sorted by null

  /external/chromium/chrome/browser/importer/
external_process_importer_bridge.cc 48 const std::vector<history::ImportedFaviconUsage>& favicons) {
49 profile_import_thread_->NotifyFaviconsImportReady(favicons);
importer_bridge.h 37 const std::vector<history::ImportedFaviconUsage>& favicons) = 0;
firefox2_importer.h 44 // |favicons| may be null, in which case TemplateURLs and favicons are
54 std::vector<history::ImportedFaviconUsage>* favicons);
139 std::vector<history::ImportedFaviconUsage>* favicons);
in_process_importer_bridge.cc 51 const std::vector<history::ImportedFaviconUsage>& favicons) {
54 NewRunnableMethod(writer_, &ProfileWriter::AddFavicons, favicons));
external_process_importer_bridge.h 45 const std::vector<history::ImportedFaviconUsage>& favicons) OVERRIDE;
firefox3_importer.h 76 // Loads the favicons given in the map from the database, loads the data,
80 std::vector<history::ImportedFaviconUsage>* favicons);
in_process_importer_bridge.h 39 const std::vector<history::ImportedFaviconUsage>& favicons) OVERRIDE;
profile_writer.h 98 const std::vector<history::ImportedFaviconUsage>& favicons);
safari_importer.h 98 // Loads the urls associated with the favicons into favicon_map;
101 // Loads and reencodes the individual favicons.
104 std::vector<history::ImportedFaviconUsage>* favicons);
firefox2_importer.cc 66 // will also import favicons and we store favicon for a URL only if the URL
156 std::vector<history::ImportedFaviconUsage>* favicons) {
231 if (favicons)
232 DataURLToFaviconUsage(url, favicon, favicons);
304 std::vector<history::ImportedFaviconUsage> favicons; local
314 &favicons);
331 if (!favicons.empty()) {
332 bridge_->SetFavicons(favicons);
655 std::vector<history::ImportedFaviconUsage>* favicons) {
678 favicons->push_back(usage)
    [all...]
firefox3_importer.cc 82 // will also import favicons and we store favicon for a URL only if the URL
305 std::vector<history::ImportedFaviconUsage> favicons; local
306 LoadFavicons(&db, favicon_map, &favicons);
307 bridge_->SetFavicons(favicons);
557 std::vector<history::ImportedFaviconUsage>* favicons) {
571 continue; // Don't bother importing favicons with invalid URLs.
582 favicons->push_back(usage);
profile_writer.cc 151 const std::vector<history::ImportedFaviconUsage>& favicons) {
153 SetImportedFavicons(favicons);
importer_unittest.cc 647 void AddFavicons(const std::vector<history::ImportedFaviconUsage>& favicons) {
857 void AddFavicons(const std::vector<history::ImportedFaviconUsage>& favicons) {
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer_unittest.cc 225 std::vector<history::ImportedFaviconUsage> favicons; local
233 &favicons);
236 EXPECT_EQ(3U, favicons.size());
237 for (size_t i = 0; i < favicons.size(); i++) {
238 if (url1_favicon == favicons[i].favicon_url) {
239 EXPECT_EQ(1U, favicons[i].urls.size());
240 std::set<GURL>::const_iterator iter = favicons[i].urls.find(url1);
241 ASSERT_TRUE(iter != favicons[i].urls.end());
243 ASSERT_TRUE(favicons[i].png_data == icon_data);
  /external/chromium/chrome/browser/history/
thumbnail_database.cc 132 // Thumbnails db now only stores favicons, so we don't need that big a page
197 const char* name = is_temporary ? "temp_favicons" : "favicons";
220 db_.Execute("CREATE INDEX favicons_url ON favicons(url)");
369 "UPDATE favicons SET image_data=?, last_updated=? WHERE id=?"));
380 "UPDATE favicons SET image_data=NULL, last_updated=? WHERE id=?"));
393 "UPDATE favicons SET last_updated=? WHERE id=?"));
406 "SELECT id, icon_type FROM favicons WHERE url=? AND (icon_type & ? > 0) "
429 "SELECT last_updated, image_data, url FROM favicons WHERE id=?"));
451 "INSERT INTO favicons (url, icon_type) VALUES (?, ?)"));
464 "DELETE FROM favicons WHERE id = ?"))
627 sql::Connection favicons; local
    [all...]
history_backend_unittest.cc 213 // Add two favicons, use the characters '1' and '2' for the image data. Note
246 rows.push_back(row2); // Reversed order for the same reason as favicons.
379 rows.push_back(row2); // Reversed order for the same reason as favicons.
552 std::vector<history::ImportedFaviconUsage> favicons; local
558 favicons.push_back(favicon);
559 backend_->SetImportedFavicons(favicons);
570 favicons.clear();
574 favicons.push_back(favicon);
575 backend_->SetImportedFavicons(favicons);
582 backend_->SetImportedFavicons(favicons);
    [all...]

Completed in 100 milliseconds