Searched refs:DownloadState (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/sync/internal_api/public/attachments/
H A Dattachment_downloader_impl.h58 struct DownloadState;
60 typedef base::ScopedPtrHashMap<AttachmentUrl, DownloadState> StateMap;
61 typedef std::vector<DownloadState*> StateList;
65 void RequestAccessToken(DownloadState* download_state);
67 const DownloadState& download_state,
81 // |requests_waiting_for_access_token_| only keeps references to DownloadState
/external/chromium_org/sync/internal_api/attachments/
H A Dattachment_downloader_impl.cc18 struct AttachmentDownloaderImpl::DownloadState { struct in class:syncer::AttachmentDownloaderImpl
20 DownloadState(const AttachmentId& attachment_id,
32 AttachmentDownloaderImpl::DownloadState::DownloadState( function in class:syncer::AttachmentDownloaderImpl::DownloadState
72 // DownloadState and request access token for it.
73 scoped_ptr<DownloadState> new_download_state(
74 new DownloadState(attachment_id, url));
78 DownloadState* download_state = iter->second;
95 DownloadState* download_state = *iter;
115 DownloadState* download_stat
[all...]
/external/chromium_org/chrome/browser/history/
H A Ddownload_database.h123 static int StateToInt(content::DownloadItem::DownloadState state);
124 static content::DownloadItem::DownloadState IntToState(int state);
H A Ddownload_row.h38 content::DownloadItem::DownloadState download_state,
89 content::DownloadItem::DownloadState state;
H A Ddownload_row.cc32 content::DownloadItem::DownloadState download_state,
H A Ddownload_database.cc68 // DownloadItem::DownloadState and DownloadDangerType to change without
92 int DownloadDatabase::StateToInt(DownloadItem::DownloadState state) {
106 DownloadItem::DownloadState DownloadDatabase::IntToState(int state) {
/external/chromium_org/content/public/test/
H A Dmock_download_manager.h43 DownloadItem::DownloadState state;
62 DownloadItem::DownloadState state,
117 DownloadItem::DownloadState state,
H A Ddownload_test_observer.h96 size_t NumDownloadsSeenInState(DownloadItem::DownloadState state) const;
109 typedef std::map<DownloadItem::DownloadState, size_t> StateMap;
H A Dmock_download_manager.cc26 DownloadItem::DownloadState state,
112 DownloadItem::DownloadState state,
H A Dmock_download_item.h47 MOCK_CONST_METHOD0(GetState, DownloadState());
/external/chromium_org/content/browser/download/
H A Ddownload_item_factory.h55 DownloadItem::DownloadState state,
H A Ddownload_item_impl.h67 DownloadItem::DownloadState state,
106 virtual DownloadState GetState() const OVERRIDE;
381 static DownloadState InternalToExternalState(
384 DownloadState external_state);
H A Ddownload_manager_impl_unittest.cc131 MOCK_CONST_METHOD0(GetState, DownloadState());
247 DownloadItem::DownloadState state,
314 DownloadItem::DownloadState state,
H A Ddownload_manager_impl.h90 content::DownloadItem::DownloadState state,
H A Ddrag_download_file.cc109 DownloadItem::DownloadState state = download_item_->GetState();
H A Ddownload_manager_impl.cc180 DownloadItem::DownloadState state,
634 DownloadItem::DownloadState state,
H A Ddownload_item_impl.cc124 DownloadItem::DownloadState state,
484 DownloadItem::DownloadState DownloadItemImpl::GetState() const {
1732 DownloadItem::DownloadState DownloadItemImpl::InternalToExternalState(
1757 DownloadState external_state) {
/external/chromium_org/content/public/browser/
H A Ddownload_item.h53 enum DownloadState { enum in class:content::DownloadItem
156 virtual DownloadState GetState() const = 0;
H A Ddownload_manager.h153 DownloadItem::DownloadState state,
/external/chromium_org/chrome/browser/download/
H A Ddownload_query.h107 void AddFilter(content::DownloadItem::DownloadState state);
H A Ddownload_query.cc149 static DownloadItem::DownloadState GetState(const DownloadItem& item) {
258 void DownloadQuery::AddFilter(DownloadItem::DownloadState state) {
259 AddFilter(base::Bind(&FieldMatches<DownloadItem::DownloadState>, state, EQ,
416 sorters_.push_back(Sorter::Build<DownloadItem::DownloadState>(
H A Ddownload_item_model_unittest.cc376 DownloadItem::DownloadState state;
H A Ddownload_status_updater_unittest.cc111 content::DownloadItem::DownloadState state =
/external/chromium_org/chrome/browser/plugins/
H A Dplugin_installer.cc31 DownloadItem::DownloadState state = download->GetState();
/external/chromium_org/chrome/browser/extensions/api/downloads/
H A Ddownloads_api.cc213 const char* StateString(DownloadItem::DownloadState state) {
215 DCHECK(state < static_cast<DownloadItem::DownloadState>(
217 if (state < 0 || state >= static_cast<DownloadItem::DownloadState>(
223 DownloadItem::DownloadState StateEnumFromString(const std::string& state) {
226 return static_cast<DownloadItem::DownloadState>(i);
508 DownloadItem::DownloadState state = StateEnumFromString(state_string);

Completed in 4163 milliseconds

12