HomeSort by relevance Sort by last modified time
    Searched defs:DownloadItemModel (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/download/
download_item_model.h 29 // constructor outlives this |DownloadItemModel|. In addition, multiple
30 // DownloadItemModel objects could be wrapping the same DownloadItem.
31 class DownloadItemModel {
33 // Constructs a DownloadItemModel. The caller must ensure that |download|
35 explicit DownloadItemModel(content::DownloadItem* download);
36 ~DownloadItemModel();
154 // The DownloadItem that this model represents. Note that DownloadItemModel
156 // DownloadItemModel in use with the same DownloadItem.
159 DISALLOW_COPY_AND_ASSIGN(DownloadItemModel);
download_item_model.cc 36 // Per DownloadItem data used by DownloadItemModel. The model doesn't keep any
250 // DownloadItemModel
252 DownloadItemModel::DownloadItemModel(DownloadItem* download)
255 DownloadItemModel::~DownloadItemModel() {}
257 base::string16 DownloadItemModel::GetInterruptReasonText() const {
266 base::string16 DownloadItemModel::GetStatusText() const {
301 base::string16 DownloadItemModel::GetTabProgressStatusText() const {
341 base::string16 DownloadItemModel::GetTooltipText(const gfx::FontList& font_list
    [all...]
  /external/chromium/chrome/browser/download/
download_item_model.h 40 class DownloadItemModel : public BaseDownloadItemModel {
42 explicit DownloadItemModel(DownloadItem* download);
43 virtual ~DownloadItemModel() { }
52 DISALLOW_COPY_AND_ASSIGN(DownloadItemModel);
download_item_model.cc 20 // DownloadItemModel
22 DownloadItemModel::DownloadItemModel(DownloadItem* download)
26 void DownloadItemModel::CancelTask() {
30 string16 DownloadItemModel::GetStatusText() {

Completed in 1045 milliseconds