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

Unified Diff: webkit/fileapi/local_file_system_operation.h

Issue 11316265: Quota calculation is wrong in cross-filesystem operation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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: webkit/fileapi/local_file_system_operation.h
diff --git a/webkit/fileapi/local_file_system_operation.h b/webkit/fileapi/local_file_system_operation.h
index 3e6d959722c7847b7f8e71da0e2de665d5c317a1..69f4a707d944af5cbd7c5ec85162b44bc112cd40 100644
--- a/webkit/fileapi/local_file_system_operation.h
+++ b/webkit/fileapi/local_file_system_operation.h
@@ -242,6 +242,10 @@ class WEBKIT_STORAGE_EXPORT LocalFileSystemOperation
FileSystemFileUtil* src_util_; // Not owned.
FileSystemFileUtil* dest_util_; // Not owned.
+ // Indicates if this operation is for cross filesystem operation or not.
+ // TODO(kinuko): This should be cleaned up.
+ bool is_cross_operation_;
+
// This is set before any write operations to dispatch
// FileUpdateObserver::StartUpdate and FileUpdateObserver::EndUpdate.
ScopedVector<ScopedUpdateNotifier> scoped_update_notifiers_;

Powered by Google App Engine
This is Rietveld 408576698