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

  /external/chromium_org/chrome/browser/history/
download_row.cc 9 DownloadRow::DownloadRow()
19 DownloadRow::DownloadRow(
56 DownloadRow::~DownloadRow() {
download_database.h 22 struct DownloadRow;
35 std::vector<DownloadRow>* results);
40 bool UpdateDownload(const DownloadRow& data);
44 bool CreateDownload(const DownloadRow& info);
download_row.h 22 struct DownloadRow {
23 DownloadRow();
24 DownloadRow(
42 ~DownloadRow();
download_database.cc 324 std::vector<DownloadRow>* results) {
330 std::map<uint32, DownloadRow*> info_map;
339 scoped_ptr<DownloadRow> info(new DownloadRow());
436 for (std::map<uint32, DownloadRow*>::iterator
438 DownloadRow* row = it->second;
452 bool DownloadDatabase::UpdateDownload(const DownloadRow& data) {
506 bool DownloadDatabase::CreateDownload(const DownloadRow& info) {
history_backend.h 41 struct DownloadRow;
286 void QueryDownloads(std::vector<DownloadRow>* rows);
287 void UpdateDownload(const DownloadRow& data);
288 void CreateDownload(const history::DownloadRow& history_info,
    [all...]
history_service.h 74 struct DownloadRow;
422 const history::DownloadRow& info,
432 scoped_ptr<std::vector<history::DownloadRow> >)>
437 // at which point 'info' contains an array of history::DownloadRow, one per
444 void UpdateDownload(const history::DownloadRow& data);
    [all...]
history_service.cc 789 const history::DownloadRow& create_info,
825 std::vector<history::DownloadRow>* rows =
826 new std::vector<history::DownloadRow>();
827 scoped_ptr<std::vector<history::DownloadRow> > scoped_rows(rows);
840 void HistoryService::UpdateDownload(const history::DownloadRow& data) {
    [all...]
history_unittest.cc 169 DownloadRow download(base::FilePath(FILE_PATH_LITERAL("current-path")),
225 std::vector<DownloadRow> downloads;
672 DownloadRow download(base::FilePath(FILE_PATH_LITERAL("foo-path")),
706 std::vector<DownloadRow> downloads;
754 std::vector<DownloadRow> results;
    [all...]
history_backend.cc     [all...]
  /external/chromium_org/chrome/browser/download/
download_history.h 21 struct DownloadRow;
40 const history::DownloadRow& info,
43 virtual void UpdateDownload(const history::DownloadRow& data);
60 const history::DownloadRow& info) {}
91 scoped_ptr<std::vector<history::DownloadRow> > infos);
download_history.cc 12 // persisted, and the last history::DownloadRow that was passed to the database.
81 history::DownloadRow* info() { return info_.get(); }
82 void set_info(const history::DownloadRow& i) {
83 info_.reset(new history::DownloadRow(i));
93 scoped_ptr<history::DownloadRow> info_;
101 history::DownloadRow GetDownloadRow(
112 return history::DownloadRow(
132 bool ShouldUpdateHistory(const history::DownloadRow* previous,
133 const history::DownloadRow& current) {
151 typedef std::vector<history::DownloadRow> InfoVector
    [all...]
download_history_unittest.cc 34 void CheckInfoEqual(const history::DownloadRow& left,
35 const history::DownloadRow& right) {
60 typedef std::vector<history::DownloadRow> InfoVector;
91 const history::DownloadRow& info,
110 const history::DownloadRow& info) OVERRIDE {
139 const history::DownloadRow& info) {
143 create_download_info_ = history::DownloadRow();
149 CheckInfoEqual(history::DownloadRow(), create_download_info_);
152 void ExpectDownloadUpdated(const history::DownloadRow& info) {
156 update_download_ = history::DownloadRow();
    [all...]
save_page_browsertest.cc 59 const history::DownloadRow&)> PersistedFilter;
87 const history::DownloadRow& info) OVERRIDE {
124 const history::DownloadRow& info) OVERRIDE {
147 const history::DownloadRow& info) {
download_browsertest.cc 264 scoped_ptr<std::vector<history::DownloadRow> >* results) {
281 scoped_ptr<std::vector<history::DownloadRow> > entries) {
288 scoped_ptr<std::vector<history::DownloadRow> > results_;
377 bool HasDataAndName(const history::DownloadRow& row) {
385 typedef base::Callback<bool(const history::DownloadRow&)> FilterCallback;
408 const history::DownloadRow& info) OVERRIDE {
    [all...]

Completed in 196 milliseconds