Home | History | Annotate | Download | only in history

Lines Matching defs:info

96     DownloadCreateInfo info;
97 info.db_handle = statement.ColumnInt64(0);
99 info.path = ColumnFilePath(statement, 1);
100 info.url_chain.push_back(GURL(statement.ColumnString(2)));
101 info.start_time = base::Time::FromTimeT(statement.ColumnInt64(3));
102 info.received_bytes = statement.ColumnInt64(4);
103 info.total_bytes = statement.ColumnInt64(5);
104 info.state = statement.ColumnInt(6);
105 results->push_back(info);
148 int64 DownloadDatabase::CreateDownload(const DownloadCreateInfo& info) {
156 BindFilePath(statement, info.path, 0);
157 statement.BindString(1, info.url().spec());
158 statement.BindInt64(2, info.start_time.ToTimeT());
159 statement.BindInt64(3, info.received_bytes);
160 statement.BindInt64(4, info.total_bytes);
161 statement.BindInt(5, info.state);