• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/loader/icon/

Lines Matching refs:IconRecord

35 #include "IconRecord.h"
186 // Clear the in-memory record of every IconRecord, anything waiting to be read from disk, and anything waiting to be written to disk
197 // Clear the iconURL -> IconRecord map
257 IconRecord* iconRecord = pageRecord->iconRecord();
271 // If it's a new IconRecord object that doesn't have its imageData set yet,
347 static inline void loadDefaultIconRecord(IconRecord* defaultIconRecord)
352 static inline void loadDefaultIconRecord(IconRecord* defaultIconRecord)
403 m_defaultIconRecord = IconRecord::create("urlIcon");
503 IconRecord* iconRecord = pageRecord->iconRecord();
527 // If this page is the last page to refer to a particular IconRecord, that IconRecord needs to
555 RefPtr<IconRecord> icon = m_iconURLToRecordMap.get(iconURL);
569 // Mark the IconRecord as requiring an update to the database only if private browsing is disabled
629 RefPtr<IconRecord> iconRecord = pageRecord->iconRecord();
674 // If we have a IconRecord, it should also have its timeStamp marked because there is only two times when we create the IconRecord:
679 if (IconRecord* icon = m_iconURLToRecordMap.get(iconURL)) {
680 LOG(IconDatabase, "Found expiration time on a present icon based on existing IconRecord");
704 if (IconRecord* icon = m_iconURLToRecordMap.get(iconURL))
780 HashMap<String, IconRecord*>::iterator i = m_iconURLToRecordMap.begin();
781 HashMap<String, IconRecord*>::iterator end = m_iconURLToRecordMap.end();
912 PassRefPtr<IconRecord> IconDatabase::getOrCreateIconRecord(const String& iconURL)
917 if (IconRecord* icon = m_iconURLToRecordMap.get(iconURL))
920 RefPtr<IconRecord> newIcon = IconRecord::create(iconURL);
1252 IconRecord* currentIcon = pageRecord->iconRecord();
1315 IconRecord* iconRecord = record->iconRecord();
1523 Vector<IconRecord*> icons;
1650 LOG(IconDatabase, "Wrote IconRecord for IconURL %s with timeStamp of %i to the DB", urlForLogging(iconSnapshots[i].iconURL()).ascii().data(), iconSnapshots[i].timestamp());