Index: webkit/browser/fileapi/file_system_context.cc |
diff --git a/webkit/browser/fileapi/file_system_context.cc b/webkit/browser/fileapi/file_system_context.cc |
index f2973d35fa2dae22c1c9bd90880c1b5c73c6df8c..a3f99fe1a16d092035d670a0e32bc31297fe4c95 100644 |
--- a/webkit/browser/fileapi/file_system_context.cc |
+++ b/webkit/browser/fileapi/file_system_context.cc |
@@ -121,11 +121,6 @@ FileSystemContext::FileSystemContext( |
external_mount_points_(external_mount_points), |
partition_path_(partition_path), |
operation_runner_(new FileSystemOperationRunner(this)) { |
- if (quota_manager_proxy) { |
- quota_manager_proxy->RegisterClient(CreateQuotaClient( |
- this, options.is_incognito())); |
- } |
- |
RegisterBackend(sandbox_backend_.get()); |
RegisterBackend(isolated_backend_.get()); |
@@ -135,6 +130,11 @@ FileSystemContext::FileSystemContext( |
RegisterBackend(*iter); |
} |
+ if (quota_manager_proxy) { |
Vladislav Kaznacheev
2013/08/28 10:46:14
You made this change because the order apparently
|
+ quota_manager_proxy->RegisterClient(CreateQuotaClient( |
+ this, options.is_incognito())); |
+ } |
+ |
sandbox_backend_->Initialize(this); |
isolated_backend_->Initialize(this); |
for (ScopedVector<FileSystemBackend>::const_iterator iter = |