| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/location.h" | 10 #include "base/location.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/message_loop/message_loop_proxy.h" | 12 #include "base/message_loop/message_loop_proxy.h" |
| 13 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
| 14 #include "base/task_runner_util.h" | 14 #include "base/task_runner_util.h" |
| 15 #include "webkit/plugins/ppapi/host_globals.h" | 15 #include "webkit/plugins/ppapi/host_globals.h" |
| 16 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 16 #include "webkit/plugins/ppapi/ppapi_plugin_instance_impl.h" |
| 17 #include "webkit/plugins/ppapi/resource_helper.h" | 17 #include "webkit/plugins/ppapi/resource_helper.h" |
| 18 | 18 |
| 19 using base::PlatformFile; | 19 using base::PlatformFile; |
| 20 using base::PlatformFileError; | 20 using base::PlatformFileError; |
| 21 using quota::StorageType; | 21 using quota::StorageType; |
| 22 | 22 |
| 23 namespace webkit { | 23 namespace webkit { |
| 24 namespace ppapi { | 24 namespace ppapi { |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 } | 281 } |
| 282 | 282 |
| 283 bool QuotaFileIO::WillSetLength(int64_t length, | 283 bool QuotaFileIO::WillSetLength(int64_t length, |
| 284 const StatusCallback& callback) { | 284 const StatusCallback& callback) { |
| 285 DCHECK(pending_operations_.empty()); | 285 DCHECK(pending_operations_.empty()); |
| 286 SetLengthOperation* op = new SetLengthOperation(this, true, length, callback); | 286 SetLengthOperation* op = new SetLengthOperation(this, true, length, callback); |
| 287 return RegisterOperationForQuotaChecks(op); | 287 return RegisterOperationForQuotaChecks(op); |
| 288 } | 288 } |
| 289 | 289 |
| 290 PluginDelegate* QuotaFileIO::GetPluginDelegate() const { | 290 PluginDelegate* QuotaFileIO::GetPluginDelegate() const { |
| 291 PluginInstance* instance = HostGlobals::Get()->GetInstance(pp_instance_); | 291 PluginInstanceImpl* instance = HostGlobals::Get()->GetInstance(pp_instance_); |
| 292 if (instance) | 292 if (instance) |
| 293 return instance->delegate(); | 293 return instance->delegate(); |
| 294 return NULL; | 294 return NULL; |
| 295 } | 295 } |
| 296 | 296 |
| 297 bool QuotaFileIO::RegisterOperationForQuotaChecks( | 297 bool QuotaFileIO::RegisterOperationForQuotaChecks( |
| 298 PendingOperationBase* op_ptr) { | 298 PendingOperationBase* op_ptr) { |
| 299 scoped_ptr<PendingOperationBase> op(op_ptr); | 299 scoped_ptr<PendingOperationBase> op(op_ptr); |
| 300 if (pending_operations_.empty()) { | 300 if (pending_operations_.empty()) { |
| 301 // This is the first pending quota check. Run querying the file size | 301 // This is the first pending quota check. Run querying the file size |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 | 415 |
| 416 | 416 |
| 417 PluginDelegate* plugin_delegate = GetPluginDelegate(); | 417 PluginDelegate* plugin_delegate = GetPluginDelegate(); |
| 418 if (plugin_delegate) | 418 if (plugin_delegate) |
| 419 plugin_delegate->DidUpdateFile(file_url_, delta); | 419 plugin_delegate->DidUpdateFile(file_url_, delta); |
| 420 inflight_operations_ = 0; | 420 inflight_operations_ = 0; |
| 421 } | 421 } |
| 422 | 422 |
| 423 } // namespace ppapi | 423 } // namespace ppapi |
| 424 } // namespace webkit | 424 } // namespace webkit |
| OLD | NEW |