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

Unified Diff: Source/web/WebViewImpl.cpp

Issue 133503002: Quota: Implement StorageQuotaClient (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/StorageQuotaClientImpl.cpp ('k') | Source/web/web.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebViewImpl.cpp
diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
index b686b28c994fe73948a9d92b54dc9dd6dcf8c3a3..f07049db50f4b06611b9e8ae3c6d31a043b99c85 100644
--- a/Source/web/WebViewImpl.cpp
+++ b/Source/web/WebViewImpl.cpp
@@ -48,6 +48,7 @@
#include "RuntimeEnabledFeatures.h"
#include "SpeechInputClientImpl.h"
#include "SpeechRecognitionClientProxy.h"
+#include "StorageQuotaClientImpl.h"
#include "ValidationMessageClientImpl.h"
#include "ViewportAnchor.h"
#include "WebAXObject.h"
@@ -410,6 +411,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client)
provideLocalFileSystemTo(m_page.get(), LocalFileSystemClient::create());
provideDatabaseClientTo(m_page.get(), DatabaseClientImpl::create());
+ provideStorageQuotaClientTo(m_page.get(), StorageQuotaClientImpl::create());
m_validationMessage = ValidationMessageClientImpl::create(*this);
m_page->setValidationMessageClient(m_validationMessage.get());
provideWorkerGlobalScopeProxyProviderTo(m_page.get(), WorkerGlobalScopeProxyProviderImpl::create());
« no previous file with comments | « Source/web/StorageQuotaClientImpl.cpp ('k') | Source/web/web.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698