Home | History | Annotate | Download | only in extensions

Lines Matching refs:Pickle

8 #include "base/pickle.h"
32 Pickle data_pickle;
41 Pickle drag_data_pickle;
67 Profile* profile, Pickle* pickle) const {
69 pickle->WriteBytes(&profile_id, sizeof(profile_id));
70 pickle->WriteString(id_);
71 pickle->WriteSize(index_);
74 bool BrowserActionDragData::ReadFromPickle(Pickle* pickle) {
78 if (!pickle->ReadBytes(&data_iterator, &tmp, sizeof(profile_id_)))
82 if (!pickle->ReadString(&data_iterator, &id_))
85 if (!pickle->ReadSize(&data_iterator, &index_))