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

  /external/chromium_org/chrome/browser/sessions/
persistent_tab_restore_service.cc 209 // If |id_to_entry| contains an entry for |id| the corresponding entry is
210 // deleted and removed from both |id_to_entry| and |entries|. This is used
213 IDToEntry* id_to_entry,
568 // Iterate through the commands populating entries and id_to_entry.
570 IDToEntry id_to_entry; local
594 RemoveEntryByID(payload, &id_to_entry, &(entries.get()));
628 RemoveEntryByID(payload.window_id, &id_to_entry, &(entries.get()));
635 id_to_entry[payload.window_id] = current_window;
663 RemoveEntryByID(payload.id, &id_to_entry, &(entries.get()));
665 id_to_entry[payload.id] = current_tab
    [all...]
  /external/chromium/chrome/browser/sessions/
tab_restore_service.cc 120 // If |id_to_entry| contains an entry for |id| the corresponding entry is
121 // deleted and removed from both |id_to_entry| and |entries|. This is used
124 IDToEntry* id_to_entry,
128 IDToEntry::iterator i = id_to_entry->find(id);
129 if (i != id_to_entry->end()) {
132 id_to_entry->erase(i);
138 for (IDToEntry::iterator i = id_to_entry->begin(); i != id_to_entry->end();
731 // Iterate through the commands populating entries and id_to_entry.
733 IDToEntry id_to_entry; local
    [all...]

Completed in 49 milliseconds