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

Unified Diff: webkit/fileapi/file_system_operation.h

Issue 14265022: [Quota][FileAPI] Add quota policy to FileSystemOperationContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: drop .gitmodule change Created 7 years, 8 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: webkit/fileapi/file_system_operation.h
diff --git a/webkit/fileapi/file_system_operation.h b/webkit/fileapi/file_system_operation.h
index c2e8fa587b5503f95e1f3c2f88319262588b52dc..c13aad0977e3e52348d4b31b85f0e0a835249034 100644
--- a/webkit/fileapi/file_system_operation.h
+++ b/webkit/fileapi/file_system_operation.h
@@ -10,6 +10,7 @@
#include "base/files/file_util_proxy.h"
#include "base/platform_file.h"
#include "base/process.h"
+#include "webkit/quota/quota_types.h"
namespace base {
class Time;
@@ -70,7 +71,8 @@ class FileSystemOperation {
typedef base::Callback<
void(base::PlatformFileError result,
base::PlatformFile file,
- base::ProcessHandle peer_handle)> OpenFileCallback;
+ base::ProcessHandle peer_handle,
+ quota::QuotaLimitType quota_limit_type)> OpenFileCallback;
// Used for ReadDirectoryCallback.
typedef std::vector<base::FileUtilProxy::Entry> FileEntryList;

Powered by Google App Engine
This is Rietveld 408576698