| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "modules/quota/DeprecatedStorageQuota.h" | 31 #include "modules/quota/DeprecatedStorageQuota.h" |
| 32 | 32 |
| 33 #include "bindings/core/v8/ScriptState.h" | |
| 34 #include "core/dom/ExceptionCode.h" | 33 #include "core/dom/ExceptionCode.h" |
| 35 #include "core/dom/ExecutionContext.h" | 34 #include "core/dom/ExecutionContext.h" |
| 36 #include "core/dom/TaskRunnerHelper.h" | 35 #include "core/dom/TaskRunnerHelper.h" |
| 37 #include "modules/quota/DeprecatedStorageQuotaCallbacksImpl.h" | 36 #include "modules/quota/DeprecatedStorageQuotaCallbacksImpl.h" |
| 38 #include "modules/quota/StorageErrorCallback.h" | 37 #include "modules/quota/StorageErrorCallback.h" |
| 39 #include "modules/quota/StorageQuotaClient.h" | 38 #include "modules/quota/StorageQuotaClient.h" |
| 40 #include "modules/quota/StorageUsageCallback.h" | 39 #include "modules/quota/StorageUsageCallback.h" |
| 41 #include "platform/StorageQuotaCallbacks.h" | 40 #include "platform/StorageQuotaCallbacks.h" |
| 42 #include "platform/WebTaskRunner.h" | 41 #include "platform/WebTaskRunner.h" |
| 42 #include "platform/bindings/ScriptState.h" |
| 43 #include "platform/weborigin/KURL.h" | 43 #include "platform/weborigin/KURL.h" |
| 44 #include "platform/weborigin/SecurityOrigin.h" | 44 #include "platform/weborigin/SecurityOrigin.h" |
| 45 #include "public/platform/Platform.h" | 45 #include "public/platform/Platform.h" |
| 46 #include "public/platform/WebStorageQuotaCallbacks.h" | 46 #include "public/platform/WebStorageQuotaCallbacks.h" |
| 47 #include "public/platform/WebStorageQuotaType.h" | 47 #include "public/platform/WebStorageQuotaType.h" |
| 48 #include "public/platform/WebTraceLocation.h" | 48 #include "public/platform/WebTraceLocation.h" |
| 49 | 49 |
| 50 namespace blink { | 50 namespace blink { |
| 51 | 51 |
| 52 DeprecatedStorageQuota::DeprecatedStorageQuota(Type type) : type_(type) {} | 52 DeprecatedStorageQuota::DeprecatedStorageQuota(Type type) : type_(type) {} |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 ->PostTask(BLINK_FROM_HERE, StorageErrorCallback::CreateSameThreadTask( | 108 ->PostTask(BLINK_FROM_HERE, StorageErrorCallback::CreateSameThreadTask( |
| 109 error_callback, kNotSupportedError)); | 109 error_callback, kNotSupportedError)); |
| 110 return; | 110 return; |
| 111 } | 111 } |
| 112 | 112 |
| 113 client->RequestQuota(script_state, storage_type, new_quota_in_bytes, | 113 client->RequestQuota(script_state, storage_type, new_quota_in_bytes, |
| 114 success_callback, error_callback); | 114 success_callback, error_callback); |
| 115 } | 115 } |
| 116 | 116 |
| 117 } // namespace blink | 117 } // namespace blink |
| OLD | NEW |