Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: storage/browser/fileapi/remove_operation_delegate.h

Issue 565073002: [Blink-FileAPI] Add the notification of update observer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: storage/browser/fileapi/remove_operation_delegate.h
diff --git a/storage/browser/fileapi/remove_operation_delegate.h b/storage/browser/fileapi/remove_operation_delegate.h
index 436a6417c9c1b28348b4c7522434e0ada2de09c0..0abb8324402129071b0372a8c9302014a999ee74 100644
--- a/storage/browser/fileapi/remove_operation_delegate.h
+++ b/storage/browser/fileapi/remove_operation_delegate.h
@@ -32,8 +32,11 @@ class RemoveOperationDelegate : public RecursiveOperationDelegate {
void DidTryRemoveFile(base::File::Error error);
void DidTryRemoveDirectory(base::File::Error remove_file_error,
base::File::Error remove_directory_error);
- void DidRemoveFile(const StatusCallback& callback,
+ void DidRemoveFile(const FileSystemURL& url,
+ const StatusCallback& callback,
base::File::Error error);
+ void NotifyOnStartUpdate(const FileSystemURL& url);
+ void NotifyOnEndUpdate(const FileSystemURL& url);
FileSystemURL url_;
StatusCallback callback_;

Powered by Google App Engine
This is Rietveld 408576698