/external/chromium_org/webkit/common/blob/ |
D | shareable_file_reference.cc | 21 typedef std::map<base::FilePath, ShareableFileReference*> FileMap; 62 scoped_refptr<ShareableFileReference> ShareableFileReference::Get( in Get() 65 ShareableFileReference* reference = in Get() 67 return scoped_refptr<ShareableFileReference>(reference); in Get() 71 scoped_refptr<ShareableFileReference> ShareableFileReference::GetOrCreate( in GetOrCreate() 81 scoped_refptr<ShareableFileReference> ShareableFileReference::GetOrCreate( in GetOrCreate() 84 return scoped_refptr<ShareableFileReference>(); in GetOrCreate() 88 webkit_blob::ShareableFileReference* null_reference = NULL; in GetOrCreate() 93 return scoped_refptr<ShareableFileReference>(result.first->second); in GetOrCreate() 97 scoped_refptr<ShareableFileReference> reference( in GetOrCreate() [all …]
|
D | shareable_file_reference.h | 18 class WEBKIT_STORAGE_COMMON_EXPORT ShareableFileReference 19 : public base::RefCounted<ShareableFileReference> { 30 static scoped_refptr<ShareableFileReference> Get(const base::FilePath& path); 35 static scoped_refptr<ShareableFileReference> GetOrCreate( 50 static scoped_refptr<ShareableFileReference> GetOrCreate( 62 friend class base::RefCounted<ShareableFileReference>; 64 ShareableFileReference(ScopedFile scoped_file); 65 ~ShareableFileReference(); 69 DISALLOW_COPY_AND_ASSIGN(ShareableFileReference);
|
D | shareable_file_reference_unittest.cc | 28 scoped_refptr<ShareableFileReference> reference1; in TEST() 29 reference1 = ShareableFileReference::Get(file); in TEST() 31 reference1 = ShareableFileReference::GetOrCreate( in TEST() 32 file, ShareableFileReference::DELETE_ON_FINAL_RELEASE, loop_proxy.get()); in TEST() 37 scoped_refptr<ShareableFileReference> reference2; in TEST() 38 reference2 = ShareableFileReference::Get(file); in TEST() 40 reference2 = ShareableFileReference::GetOrCreate( in TEST() 41 file, ShareableFileReference::DELETE_ON_FINAL_RELEASE, loop_proxy.get()); in TEST() 46 EXPECT_TRUE(ShareableFileReference::Get(file).get()); in TEST() 52 EXPECT_FALSE(ShareableFileReference::Get(file).get()); in TEST()
|
D | blob_data.h | 43 void AttachShareableFileReference(ShareableFileReference* reference) { in AttachShareableFileReference() 71 std::vector<scoped_refptr<ShareableFileReference> > shareable_files_;
|
/external/chromium_org/chrome/browser/extensions/api/page_capture/ |
D | page_capture_api.cc | 26 using webkit_blob::ShareableFileReference; 46 webkit_blob::ShareableFileReference* to_release = mhtml_file_.get(); in ~PageCaptureSaveAsMHTMLFunction() 105 mhtml_file_ = ShareableFileReference::GetOrCreate( in TemporaryFileCreated() 107 ShareableFileReference::DELETE_ON_FINAL_RELEASE, in TemporaryFileCreated()
|
D | page_capture_api.h | 64 scoped_refptr<webkit_blob::ShareableFileReference> mhtml_file_;
|
/external/chromium_org/webkit/browser/fileapi/ |
D | file_system_file_stream_reader.h | 59 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref); in NON_EXPORTED_BASE() 66 scoped_refptr<webkit_blob::ShareableFileReference> snapshot_ref_; in NON_EXPORTED_BASE()
|
D | async_file_util.h | 24 class ShareableFileReference; variable 79 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref)>
|
D | file_system_operation.h | 27 class ShareableFileReference; variable 121 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref)>
|
D | copy_or_move_operation_delegate.cc | 134 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) { in RunAfterCreateSnapshot() 165 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref, in RunAfterPreWriteValidation() 186 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref, in RunAfterCopyInForeignFile() 313 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) { in PostWriteValidationAfterCreateSnapshotFile() 334 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref, in DidPostWriteValidation()
|
D | sandbox_file_stream_writer.h | 58 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref); in NON_EXPORTED_BASE()
|
D | file_system_file_stream_reader.cc | 123 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) { in DidCreateSnapshot()
|
D | async_file_util_adapter.cc | 24 using webkit_blob::ShareableFileReference; 75 ShareableFileReference::GetOrCreate(scoped_file_.Pass())); in ReplySnapshotFile()
|
D | copy_or_move_operation_delegate.h | 23 class ShareableFileReference; variable
|
/external/chromium_org/content/browser/loader/ |
D | redirect_to_file_resource_handler.h | 23 class ShareableFileReference; variable 94 scoped_refptr<webkit_blob::ShareableFileReference> deletable_file_;
|
D | redirect_to_file_resource_handler.cc | 23 using webkit_blob::ShareableFileReference; 169 deletable_file_ = ShareableFileReference::GetOrCreate( in DidCreateTemporaryFile() 171 ShareableFileReference::DELETE_ON_FINAL_RELEASE, in DidCreateTemporaryFile()
|
D | resource_dispatcher_host_impl.h | 53 class ShareableFileReference; variable 189 webkit_blob::ShareableFileReference* reference); 438 typedef std::map<int, scoped_refptr<webkit_blob::ShareableFileReference> >
|
/external/chromium_org/chrome/browser/media_galleries/fileapi/ |
D | device_media_async_file_util.cc | 22 using webkit_blob::ShareableFileReference; 293 ShareableFileReference::GetOrCreate( in OnDidCreateSnapshotFile() 295 ShareableFileReference::DELETE_ON_FINAL_RELEASE, in OnDidCreateSnapshotFile() 302 scoped_refptr<webkit_blob::ShareableFileReference> platform_file, in OnDidCheckMedia() 314 scoped_refptr<ShareableFileReference>()); in OnCreateSnapshotFileError()
|
D | itunes_file_util.cc | 267 scoped_refptr<webkit_blob::ShareableFileReference>* file_ref) { in CreateSnapshotFileSync() 280 *file_ref = scoped_refptr<webkit_blob::ShareableFileReference>(); in CreateSnapshotFileSync() 371 scoped_refptr<webkit_blob::ShareableFileReference> file_ref; in CreateSnapshotFileWithFreshDataProvider()
|
D | itunes_file_util.h | 62 scoped_refptr<webkit_blob::ShareableFileReference>* file_ref) OVERRIDE;
|
D | device_media_async_file_util.h | 159 scoped_refptr<webkit_blob::ShareableFileReference> platform_file,
|
/external/chromium_org/content/browser/fileapi/ |
D | fileapi_message_filter.h | 49 class ShareableFileReference; variable 195 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref); 239 std::map<int, scoped_refptr<webkit_blob::ShareableFileReference> >
|
D | fileapi_message_filter.cc | 772 const scoped_refptr<webkit_blob::ShareableFileReference>& /* unused */) { in DidCreateSnapshot() argument 781 scoped_refptr<webkit_blob::ShareableFileReference> file_ref = in DidCreateSnapshot() 782 webkit_blob::ShareableFileReference::Get(platform_path); in DidCreateSnapshot() 796 file_ref = webkit_blob::ShareableFileReference::GetOrCreate( in DidCreateSnapshot() 798 webkit_blob::ShareableFileReference::DONT_DELETE_ON_FINAL_RELEASE, in DidCreateSnapshot()
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
D | async_file_util.cc | 107 scoped_refptr<webkit_blob::ShareableFileReference> file_reference = in RunCreateSnapshotFileCallback() 108 webkit_blob::ShareableFileReference::GetOrCreate(webkit_blob::ScopedFile( in RunCreateSnapshotFileCallback() 419 scoped_refptr<webkit_blob::ShareableFileReference>()); in CreateSnapshotFile() 433 scoped_refptr<webkit_blob::ShareableFileReference>())); in CreateSnapshotFile()
|
/external/chromium_org/webkit/browser/blob/ |
D | blob_storage_context.cc | 296 scoped_refptr<ShareableFileReference> shareable_file = in AppendFileItem() 297 ShareableFileReference::Get(file_path); in AppendFileItem()
|