Home | History | Annotate | Download | only in common

Lines Matching refs:document_state

81     const std::vector<base::NullableString16>& document_state,
83 if (document_state.empty())
95 if (document_state.size() < 3)
102 if (!base::StringToSizeT(document_state[index++].string(), &item_count))
106 if (index + 1 >= document_state.size())
110 const base::NullableString16& type = document_state[index++];
112 if (index >= document_state.size())
116 if (!base::StringToSizeT(document_state[index++].string(), &value_size))
119 if (index + value_size > document_state.size() ||
127 referenced_files->push_back(document_state[index++]);
145 if (!AppendReferencedFilesFromDocumentState(frame_state.document_state,
509 WriteStringVector(state.document_state, obj);
565 ReadStringVector(obj, &state->document_state);