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

Side by Side Diff: Source/web/StorageQuotaChromium.cpp

Issue 60033008: Remove forwarding headers in public/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/WebMediaPlayerClientImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 15 matching lines...) Expand all
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 "config.h" 31 #include "config.h"
32 #include "modules/quota/StorageQuota.h" 32 #include "modules/quota/StorageQuota.h"
33 33
34 #include "WebFrameClient.h" 34 #include "WebFrameClient.h"
35 #include "WebFrameImpl.h" 35 #include "WebFrameImpl.h"
36 #include "WebStorageQuotaType.h"
37 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
38 #include "core/dom/ExceptionCode.h" 37 #include "core/dom/ExceptionCode.h"
39 #include "core/dom/ExecutionContext.h" 38 #include "core/dom/ExecutionContext.h"
40 #include "modules/quota/StorageErrorCallback.h" 39 #include "modules/quota/StorageErrorCallback.h"
41 #include "modules/quota/StorageQuotaCallback.h" 40 #include "modules/quota/StorageQuotaCallback.h"
42 #include "modules/quota/StorageUsageCallback.h" 41 #include "modules/quota/StorageUsageCallback.h"
43 #include "modules/quota/WebStorageQuotaCallbacksImpl.h" 42 #include "modules/quota/WebStorageQuotaCallbacksImpl.h"
43 #include "public/platform/WebStorageQuotaType.h"
44 #include "wtf/Threading.h" 44 #include "wtf/Threading.h"
45 45
46 using namespace blink; 46 using namespace blink;
47 47
48 namespace WebCore { 48 namespace WebCore {
49 49
50 // FIXME: Implement this as StorageQuotaClient. 50 // FIXME: Implement this as StorageQuotaClient.
51 void StorageQuota::requestQuota(ExecutionContext* executionContext, unsigned lon g long newQuotaInBytes, PassRefPtr<StorageQuotaCallback> successCallback, PassRe fPtr<StorageErrorCallback> errorCallback) 51 void StorageQuota::requestQuota(ExecutionContext* executionContext, unsigned lon g long newQuotaInBytes, PassRefPtr<StorageQuotaCallback> successCallback, PassRe fPtr<StorageErrorCallback> errorCallback)
52 { 52 {
53 ASSERT(executionContext); 53 ASSERT(executionContext);
54 WebStorageQuotaType storageType = static_cast<WebStorageQuotaType>(m_type); 54 WebStorageQuotaType storageType = static_cast<WebStorageQuotaType>(m_type);
55 if (storageType != WebStorageQuotaTypeTemporary && storageType != WebStorage QuotaTypePersistent) { 55 if (storageType != WebStorageQuotaTypeTemporary && storageType != WebStorage QuotaTypePersistent) {
56 // Unknown storage type is requested. 56 // Unknown storage type is requested.
57 executionContext->postTask(StorageErrorCallback::CallbackTask::create(er rorCallback, NotSupportedError)); 57 executionContext->postTask(StorageErrorCallback::CallbackTask::create(er rorCallback, NotSupportedError));
58 return; 58 return;
59 } 59 }
60 if (executionContext->isDocument()) { 60 if (executionContext->isDocument()) {
61 Document* document = toDocument(executionContext); 61 Document* document = toDocument(executionContext);
62 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame()); 62 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
63 webFrame->client()->requestStorageQuota(webFrame, storageType, newQuotaI nBytes, WebStorageQuotaCallbacksImpl::createLeakedPtr(successCallback, errorCall back)); 63 webFrame->client()->requestStorageQuota(webFrame, storageType, newQuotaI nBytes, WebStorageQuotaCallbacksImpl::createLeakedPtr(successCallback, errorCall back));
64 } else { 64 } else {
65 // Requesting quota in Worker is not supported. 65 // Requesting quota in Worker is not supported.
66 executionContext->postTask(StorageErrorCallback::CallbackTask::create(er rorCallback, NotSupportedError)); 66 executionContext->postTask(StorageErrorCallback::CallbackTask::create(er rorCallback, NotSupportedError));
67 } 67 }
68 } 68 }
69 69
70 } // namespace WebCore 70 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/WebMediaPlayerClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698