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

1 2 3

  /external/chromium_org/webkit/browser/fileapi/
copy_or_move_file_validator.h 44 // This method must always return a non-NULL validator. |src_url| is needed
48 const FileSystemURL& src_url,
copy_or_move_operation_delegate.cc 49 const FileSystemURL& src_url,
56 src_url_(src_url),
98 const FileSystemURL& src_url,
106 src_url_(src_url),
370 const FileSystemURL& src_url,
379 src_url_(src_url),
730 const FileSystemURL& src_url,
734 FileSystemOperation::BEGIN_COPY_ENTRY, src_url, FileSystemURL(), 0);
737 FileSystemURL dest_url = CreateDestURL(src_url);
741 operation_runner(), operation_type_, src_url, dest_url, option_
    [all...]
copy_or_move_operation_delegate.h 118 void DidCopyOrMoveFile(const FileSystemURL& src_url,
125 void ProcessDirectoryInternal(const FileSystemURL& src_url,
128 void DidCreateDirectory(const FileSystemURL& src_url,
133 const FileSystemURL& src_url,
137 void PostProcessDirectoryAfterTouchFile(const FileSystemURL& src_url,
143 void OnCopyFileProgress(const FileSystemURL& src_url, int64 size);
144 FileSystemURL CreateDestURL(const FileSystemURL& src_url) const;
file_system_operation_impl.cc 70 const FileSystemURL& src_url,
82 src_url, dest_url,
91 void FileSystemOperationImpl::Move(const FileSystemURL& src_url,
100 src_url, dest_url,
282 const FileSystemURL& src_url,
288 DCHECK(src_url.IsInSameFileSystem(dest_url));
293 weak_factory_.GetWeakPtr(), src_url, dest_url, option,
299 const FileSystemURL& src_url,
304 DCHECK(src_url.IsInSameFileSystem(dest_url));
309 src_url, dest_url, option, callback)
    [all...]
async_file_util_adapter.h 77 const FileSystemURL& src_url,
84 const FileSystemURL& src_url,
file_system_operation_impl.h 41 virtual void Copy(const FileSystemURL& src_url,
46 virtual void Move(const FileSystemURL& src_url,
84 virtual void CopyFileLocal(const FileSystemURL& src_url,
89 virtual void MoveFileLocal(const FileSystemURL& src_url,
file_system_operation_runner.h 69 // Copies a file or directory from |src_url| to |dest_url|. If
70 // |src_url| is a directory, the contents of |src_url| are copied to
75 OperationID Copy(const FileSystemURL& src_url,
81 // Moves a file or directory from |src_url| to |dest_url|. A new file
84 OperationID Move(const FileSystemURL& src_url,
194 // Copies a file from |src_url| to |dest_url|.
196 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
201 // - File::FILE_ERROR_NOT_FOUND if |src_url|
203 // - File::FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file
    [all...]
async_file_util.h 210 // Copies a file from |src_url| to |dest_url|.
212 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
223 // - File::FILE_ERROR_NOT_FOUND if |src_url|
225 // - File::FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
233 const FileSystemURL& src_url,
239 // Moves a local file from |src_url| to |dest_url|.
241 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
246 // - File::FILE_ERROR_NOT_FOUND if |src_url|
248 // - File::FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
256 const FileSystemURL& src_url,
    [all...]
file_system_operation.h 405 // Copies a file from |src_url| to |dest_url|.
407 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
415 // - File::FILE_ERROR_NOT_FOUND if |src_url|
417 // - File::FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
423 virtual void CopyFileLocal(const FileSystemURL& src_url,
429 // Moves a local file from |src_url| to |dest_url|.
431 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
436 // - File::FILE_ERROR_NOT_FOUND if |src_url|
438 // - File::FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
444 virtual void MoveFileLocal(const FileSystemURL& src_url,
    [all...]
  /external/chromium_org/content/browser/streams/
stream_registry.h 29 // Clones a stream. Returns true on success, or false if |src_url| doesn't
31 bool CloneStream(const GURL& url, const GURL& src_url);
stream_registry.cc 41 bool StreamRegistry::CloneStream(const GURL& url, const GURL& src_url) {
43 scoped_refptr<Stream> stream(GetStream(src_url));
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_operation.h 42 virtual void Copy(const fileapi::FileSystemURL& src_url,
47 virtual void Move(const fileapi::FileSystemURL& src_url,
85 virtual void CopyFileLocal(const fileapi::FileSystemURL& src_url,
90 virtual void MoveFileLocal(const fileapi::FileSystemURL& src_url,
syncable_file_system_operation.cc 124 const FileSystemURL& src_url,
141 src_url, dest_url, option, progress_callback,
147 const FileSystemURL& src_url,
157 target_paths_.push_back(src_url);
164 src_url, dest_url, option,
330 const FileSystemURL& src_url,
336 impl_->CopyFileLocal(src_url, dest_url, option, progress_callback, callback);
340 const FileSystemURL& src_url,
345 impl_->MoveFileLocal(src_url, dest_url, option, callback);
canned_syncable_file_system.h 121 base::File::Error Copy(const fileapi::FileSystemURL& src_url,
123 base::File::Error Move(const fileapi::FileSystemURL& src_url,
174 void DoCopy(const fileapi::FileSystemURL& src_url,
177 void DoMove(const fileapi::FileSystemURL& src_url,
  /external/chromium_org/chrome/browser/renderer_context_menu/
context_menu_content_type_unittest.cc 46 rv.src_url = GURL("http://test.image/");
51 rv.src_url = GURL("http://test.video/");
56 rv.src_url = GURL("http://test.audio/");
  /external/chromium_org/ppapi/examples/video_effects/
video_effects.cc 56 void DestinationOpenDone(int32_t result, const std::string& src_url);
110 const std::string& src_url) {
116 video_source_.Open(src_url,
  /external/chromium_org/chrome/browser/chromeos/drive/fileapi/
async_file_util.h 61 const fileapi::FileSystemURL& src_url,
68 const fileapi::FileSystemURL& src_url,
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
provider_async_file_util.h 69 const fileapi::FileSystemURL& src_url,
76 const fileapi::FileSystemURL& src_url,
  /external/chromium_org/chrome/browser/local_discovery/storage/
privet_filesystem_async_util.h 56 const fileapi::FileSystemURL& src_url,
63 const fileapi::FileSystemURL& src_url,
  /external/chromium_org/content/browser/fileapi/
dragged_file_util_unittest.cc 449 FileSystemURL src_url = GetEntryURL(file_system_context(), local
452 src_root, dest_root, src_url);
458 directories.push(src_url);
462 << src_url.path().value());
465 src_url, dest_url));
466 VerifyFilesHaveSameContent(src_url, dest_url);
486 FileSystemURL src_url = GetEntryURL(file_system_context(), local
489 src_root, dest_root, src_url);
491 << src_url.path().value());
494 src_url, dest_url))
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util.h 81 const fileapi::FileSystemURL& src_url,
88 const fileapi::FileSystemURL& src_url,
131 const fileapi::FileSystemURL& src_url,
164 const fileapi::FileSystemURL& src_url,
device_media_async_file_util.h 78 const fileapi::FileSystemURL& src_url,
85 const fileapi::FileSystemURL& src_url,
  /external/chromium_org/content/child/
webblobregistry_impl.h 39 const blink::WebURL& src_url);
  /external/chromium_org/content/public/common/
context_menu_params.h 74 GURL src_url; member in struct:content::ContextMenuParams
  /external/chromium_org/chrome/browser/speech/
tts_controller.h 132 void set_src_url(const GURL& src_url) { src_url_ = src_url; }
133 const GURL& src_url() { return src_url_; } function in class:Utterance

Completed in 145 milliseconds

1 2 3