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

Unified Diff: third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp

Issue 2877363002: Move more classes over to use WebLocalFrameBase instead of WebLocalFrameImpl. (Closed)
Patch Set: Created 3 years, 7 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
Index: third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp b/third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp
index 514fca27c944b28c834d506f938b52f3602d7b75..e3538b0c1466e97e8b54a97d3cb2d23e590081cd 100644
--- a/third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp
+++ b/third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp
@@ -33,12 +33,12 @@
#include "core/dom/Document.h"
#include "core/dom/ExecutionContext.h"
#include "core/dom/TaskRunnerHelper.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "modules/quota/DeprecatedStorageQuotaCallbacksImpl.h"
#include "modules/quota/StorageErrorCallback.h"
#include "modules/quota/StorageQuotaCallback.h"
#include "public/platform/WebStorageQuotaType.h"
#include "public/web/WebFrameClient.h"
-#include "web/WebLocalFrameImpl.h"
namespace blink {
@@ -58,8 +58,8 @@ void StorageQuotaClientImpl::RequestQuota(
<< "Quota requests are not supported in workers";
Document* document = ToDocument(execution_context);
- WebLocalFrameImpl* web_frame =
- WebLocalFrameImpl::FromFrame(document->GetFrame());
+ WebLocalFrameBase* web_frame =
+ WebLocalFrameBase::FromFrame(document->GetFrame());
StorageQuotaCallbacks* callbacks =
DeprecatedStorageQuotaCallbacksImpl::Create(success_callback,
error_callback);
« no previous file with comments | « third_party/WebKit/Source/web/RemoteFrameOwner.cpp ('k') | third_party/WebKit/Source/web/TextCheckerClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698