HomeSort by relevance Sort by last modified time
    Searched refs:DownloadFile (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium/chrome/browser/download/
download_file.h 23 // cancelled, the DownloadFile is destroyed.
24 class DownloadFile : public BaseFile {
26 DownloadFile(const DownloadCreateInfo* info,
28 virtual ~DownloadFile();
52 DISALLOW_COPY_AND_ASSIGN(DownloadFile);
download_file.cc 16 DownloadFile::DownloadFile(const DownloadCreateInfo* info,
31 DownloadFile::~DownloadFile() {
35 void DownloadFile::CancelDownloadRequest(ResourceDispatcherHost* rdh) {
45 DownloadManager* DownloadFile::GetDownloadManager() {
50 std::string DownloadFile::DebugString() const {
download_file_manager.h 5 // The DownloadFileManager owns a set of DownloadFile objects, each of which
55 class DownloadFile;
138 // Creates DownloadFile on FILE thread and continues starting the download
149 DownloadFile* GetDownloadFile(int id);
159 // Unique ID for each DownloadFile.
162 typedef base::hash_map<int, DownloadFile*> DownloadFileMap;
download_file_manager.cc 78 scoped_ptr<DownloadFile>
79 download_file(new DownloadFile(info, download_manager));
117 DownloadFile* DownloadFileManager::GetDownloadFile(int id) {
140 DownloadFile* download_file = i->second;
188 // DownloadFile has been deleted.
197 DownloadFile* download = GetDownloadFile(id);
217 DownloadFile* download = GetDownloadFile(id);
252 DownloadFile* download = it->second;
266 DownloadFile* download_file = downloads_[id];
281 std::set<DownloadFile*> to_remove
    [all...]
download_file_unittest.cc 57 virtual void CreateDownloadFile(scoped_ptr<DownloadFile>* file, int offset) {
63 file->reset(new DownloadFile(&info, download_manager_));
66 virtual void DestroyDownloadFile(scoped_ptr<DownloadFile>* file, int offset) {
79 // Make sure the mock BrowserThread outlives the DownloadFile to satisfy
84 void AppendDataToFile(scoped_ptr<DownloadFile>* file,
102 // DownloadFile instance we are testing.
103 scoped_ptr<DownloadFile> download_file_;
109 // File thread to satisfy debug checks in DownloadFile.
download_manager_unittest.cc 52 void AddDownloadToFileManager(int id, DownloadFile* download_file) {
200 class MockDownloadFile : public DownloadFile {
203 : DownloadFile(info, manager), renamed_count_(0) { }
314 DownloadFile* download_file(new DownloadFile(info, download_manager_));
567 DownloadFile* download_file(
568 new DownloadFile(info, download_manager_));
  /external/chromium_org/content/browser/download/
download_file_factory.h 23 class DownloadFile;
31 virtual DownloadFile* CreateFile(
mock_download_file.cc 14 void SuccessRun(const DownloadFile::InitializeCallback& callback) {
download_file.h 23 // cancelled, the DownloadFile is destroyed.
24 class CONTENT_EXPORT DownloadFile {
40 virtual ~DownloadFile() {}
download_file_factory.cc 14 DownloadFile* DownloadFileFactory::CreateFile(
mock_download_file.h 21 class MockDownloadFile : virtual public DownloadFile {
26 // DownloadFile functions.
download_file_impl.h 28 class CONTENT_EXPORT DownloadFileImpl : virtual public DownloadFile {
51 // DownloadFile functions.
90 // with DownloadFile and get rid of BaseFile.
download_item_impl.h 28 class DownloadFile;
171 virtual void Start(scoped_ptr<DownloadFile> download_file,
310 // Callback from file thread when we initialize the DownloadFile.
345 // Destroy the DownloadFile object. If |destroy_file| is true, the file is
346 // destroyed with it. Otherwise, DownloadFile::Detach() is called before
451 // Current speed. Calculated by the DownloadFile.
530 // DownloadFile associated with this download. Note that this
534 scoped_ptr<DownloadFile> download_file_;
  /external/chromium_org/chrome/test/functional/ispy/ispy_core/tests/rendering_test_manager/
cloud_bucket.py 26 def DownloadFile(self, path):
mock_cloud_bucket.py 30 def DownloadFile(self, path):
cloud_bucket_impl.py 41 def DownloadFile(self, path):
  /external/chromium_org/chrome/browser/media_galleries/mac/
mtp_device_delegate_impl_mac.h 86 void DownloadFile(
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
api_util_interface.h 136 virtual void DownloadFile(const std::string& resource_id,
fake_api_util.h 80 virtual void DownloadFile(const std::string& resource_id,
remote_sync_delegate.cc 116 DownloadFile(callback);
189 void RemoteSyncDelegate::DownloadFile(const SyncStatusCallback& callback) {
196 api_util()->DownloadFile(
379 DownloadFile(callback);
remote_sync_delegate.h 58 void DownloadFile(const SyncStatusCallback& callback);
fake_api_util_unittest.cc 99 api_util.DownloadFile(kResourceId1,
  /external/chromium_org/content/public/test/
test_file_error_injector.cc 49 // DownloadFile interface.
89 const DownloadFile::InitializeCallback original_callback,
96 const DownloadFile::RenameCompletionCallback original_callback,
128 // DownloadItem schedules a DownloadFile to be destroyed and creates another
130 // for the old DownloadFile is run before the ConstructionCallback for the
131 // next DownloadFile.
264 virtual DownloadFile* CreateFile(
298 DownloadFile* DownloadFileWithErrorsFactory::CreateFile(
  /external/chromium/chrome/browser/ui/webui/chromeos/
imageburner_ui.h 55 void DownloadFile(const GURL& url, const FilePath& target_file,
  /external/chromium_org/chrome/browser/drive/
drive_service_interface.h 275 virtual google_apis::CancelCallback DownloadFile(

Completed in 382 milliseconds

1 2 3