| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "webkit/plugins/ppapi/quota_file_io.h" | 5 #include "webkit/plugins/ppapi/quota_file_io.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/memory/scoped_callback_factory.h" | 10 #include "base/memory/scoped_callback_factory.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/message_loop_proxy.h" | 12 #include "base/message_loop_proxy.h" |
| 13 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
| 14 #include "base/task.h" | 14 #include "base/task.h" |
| 15 #include "webkit/plugins/ppapi/host_globals.h" |
| 15 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 16 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
| 16 #include "webkit/plugins/ppapi/resource_helper.h" | 17 #include "webkit/plugins/ppapi/resource_helper.h" |
| 17 #include "webkit/plugins/ppapi/resource_tracker.h" | 18 #include "webkit/plugins/ppapi/resource_tracker.h" |
| 18 | 19 |
| 19 using base::PlatformFile; | 20 using base::PlatformFile; |
| 20 using base::PlatformFileError; | 21 using base::PlatformFileError; |
| 21 using quota::StorageType; | 22 using quota::StorageType; |
| 22 | 23 |
| 23 namespace webkit { | 24 namespace webkit { |
| 24 namespace ppapi { | 25 namespace ppapi { |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 } | 264 } |
| 264 | 265 |
| 265 bool QuotaFileIO::WillSetLength(int64_t length, | 266 bool QuotaFileIO::WillSetLength(int64_t length, |
| 266 const StatusCallback& callback) { | 267 const StatusCallback& callback) { |
| 267 DCHECK(pending_operations_.empty()); | 268 DCHECK(pending_operations_.empty()); |
| 268 SetLengthOperation* op = new SetLengthOperation(this, true, length, callback); | 269 SetLengthOperation* op = new SetLengthOperation(this, true, length, callback); |
| 269 return RegisterOperationForQuotaChecks(op); | 270 return RegisterOperationForQuotaChecks(op); |
| 270 } | 271 } |
| 271 | 272 |
| 272 PluginDelegate* QuotaFileIO::GetPluginDelegate() const { | 273 PluginDelegate* QuotaFileIO::GetPluginDelegate() const { |
| 273 PluginInstance* instance = ResourceTracker::Get()->GetInstance(pp_instance_); | 274 PluginInstance* instance = |
| 275 HostGlobals::Get()->host_resource_tracker()->GetInstance(pp_instance_); |
| 274 if (instance) | 276 if (instance) |
| 275 return instance->delegate(); | 277 return instance->delegate(); |
| 276 return NULL; | 278 return NULL; |
| 277 } | 279 } |
| 278 | 280 |
| 279 bool QuotaFileIO::RegisterOperationForQuotaChecks( | 281 bool QuotaFileIO::RegisterOperationForQuotaChecks( |
| 280 PendingOperationBase* op_ptr) { | 282 PendingOperationBase* op_ptr) { |
| 281 scoped_ptr<PendingOperationBase> op(op_ptr); | 283 scoped_ptr<PendingOperationBase> op(op_ptr); |
| 282 if (pending_operations_.empty()) { | 284 if (pending_operations_.empty()) { |
| 283 // This is the first pending quota check. Run querying the file size | 285 // This is the first pending quota check. Run querying the file size |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 | 398 |
| 397 | 399 |
| 398 PluginDelegate* plugin_delegate = GetPluginDelegate(); | 400 PluginDelegate* plugin_delegate = GetPluginDelegate(); |
| 399 if (plugin_delegate) | 401 if (plugin_delegate) |
| 400 plugin_delegate->DidUpdateFile(file_url_, delta); | 402 plugin_delegate->DidUpdateFile(file_url_, delta); |
| 401 inflight_operations_ = 0; | 403 inflight_operations_ = 0; |
| 402 } | 404 } |
| 403 | 405 |
| 404 } // namespace ppapi | 406 } // namespace ppapi |
| 405 } // namespace webkit | 407 } // namespace webkit |
| OLD | NEW |