Searched refs:downloads_ (Results 1 - 13 of 13) sorted by relevance

/external/chromium/chrome/browser/download/
H A Ddownload_file_manager.cc56 DCHECK(downloads_.empty());
69 STLDeleteValues(&downloads_);
92 downloads_[info->download_id] = download_file.release();
118 DownloadFileMap::iterator it = downloads_.find(id);
119 return it == downloads_.end() ? NULL : it->second;
137 for (DownloadFileMap::iterator i = downloads_.begin();
138 i != downloads_.end(); ++i) {
248 DownloadFileMap::iterator it = downloads_.find(id);
249 if (it == downloads_.end())
263 if (!ContainsKey(downloads_, i
[all...]
H A Ddownload_file_manager.h120 return downloads_.size();
165 DownloadFileMap downloads_; member in class:DownloadFileManager
H A Ddownload_manager.cc83 // Go through all downloads in downloads_. Dangerous ones we need to
85 for (DownloadSet::iterator it = downloads_.begin(); it != downloads_.end();) {
113 STLDeleteElements(&downloads_);
466 downloads_.insert(download);
484 DCHECK(ContainsKey(downloads_, download));
813 int downloads_count = downloads_.erase(download);
856 downloads_.erase(*it);
889 downloads_.insert(download_item);
1013 downloads_
[all...]
H A Ddownload_manager.h323 // |downloads_| is the owning set for all downloads known to the
362 DownloadSet downloads_; member in class:DownloadManager
H A Ddownload_manager_unittest.cc53 file_manager()->downloads_[id] = download_file;
/external/chromium_org/content/browser/download/
H A Ddownload_manager_impl.cc254 DCHECK(!ContainsKey(downloads_, id));
259 downloads_[id] = download;
342 for (DownloadMap::iterator it = downloads_.begin(); it != downloads_.end();
348 STLDeleteValues(&downloads_);
349 downloads_.clear();
393 DownloadMap::iterator item_iterator = downloads_.find(id);
395 if (item_iterator == downloads_.end() ||
450 for (DownloadMap::iterator it = downloads_.begin();
451 it != downloads_
[all...]
H A Ddownload_manager_impl.h166 // |downloads_| is the owning set for all downloads known to the
170 DownloadMap downloads_; member in class:content::DownloadManagerImpl
/external/chromium/chrome/browser/ui/webui/
H A Dactive_downloads_ui.cc131 DownloadList downloads_; member in class:__anon2755::ActiveDownloadsHandler
203 for (size_t i = 0; i < downloads_.size(); ++i) {
204 downloads_[i]->RemoveObserver(this);
255 return id < downloads_.size() ? downloads_[id] : NULL;
326 std::find(downloads_.begin(), downloads_.end(), item);
327 if (it == downloads_.end()) {
328 downloads_.push_back(item);
336 for (size_t i = 0; i < downloads_
[all...]
/external/chromium_org/chrome/browser/resources/downloads/
H A Ddownloads.js61 this.downloads_ = {};
81 if (!!this.downloads_[id]) {
82 this.downloads_[id].update(download);
84 this.downloads_[id] = new Download(download);
90 this.node_.insertBefore(this.downloads_[id].node, this.node_.firstChild);
93 this.node_.appendChild(this.downloads_[id].node);
124 for (var i in this.downloads_) {
135 return Object.keys(this.downloads_).length;
162 this.node_.removeChild(this.downloads_[id].node);
163 delete this.downloads_[i
[all...]
/external/chromium_org/chrome/browser/notifications/
H A Dmessage_center_notification_manager.h182 scoped_ptr<ImageDownloads> downloads_; member in class:MessageCenterNotificationManager::ProfileNotification
H A Dmessage_center_notification_manager.cc493 downloads_(new ImageDownloads(message_center, this)) {
501 downloads_->StartDownloads(notification_);
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_observers.cc1438 downloads_(downloads),
1467 if (--downloads_ == 0) {
H A Dautomation_provider_observers.h898 int downloads_; member in class:AutomationProviderDownloadItemObserver

Completed in 211 milliseconds