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

Unified Diff: Source/web/StorageQuotaClientImpl.cpp

Issue 241303002: Rename WebFrameImpl to WebLocalFrameImpl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix Mac too Created 6 years, 8 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/StorageClientImpl.cpp ('k') | Source/web/TextFinder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/StorageQuotaClientImpl.cpp
diff --git a/Source/web/StorageQuotaClientImpl.cpp b/Source/web/StorageQuotaClientImpl.cpp
index 5335ed719ec7509635c89255bb974418874ad8e6..df21d9ba87f3203fab49de16444c121aa16cde75 100644
--- a/Source/web/StorageQuotaClientImpl.cpp
+++ b/Source/web/StorageQuotaClientImpl.cpp
@@ -32,7 +32,7 @@
#include "StorageQuotaClientImpl.h"
#include "WebFrameClient.h"
-#include "WebFrameImpl.h"
+#include "WebLocalFrameImpl.h"
#include "bindings/v8/NewScriptState.h"
#include "bindings/v8/ScriptPromise.h"
#include "bindings/v8/ScriptPromiseResolverWithContext.h"
@@ -67,7 +67,7 @@ void StorageQuotaClientImpl::requestQuota(ExecutionContext* executionContext, We
if (executionContext->isDocument()) {
Document* document = toDocument(executionContext);
- WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
+ WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame());
OwnPtr<StorageQuotaCallbacks> callbacks = DeprecatedStorageQuotaCallbacksImpl::create(successCallback, errorCallback);
webFrame->client()->requestStorageQuota(webFrame, storageType, newQuotaInBytes, callbacks.release());
} else {
@@ -85,7 +85,7 @@ ScriptPromise StorageQuotaClientImpl::requestPersistentQuota(ExecutionContext* e
if (executionContext->isDocument()) {
Document* document = toDocument(executionContext);
- WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
+ WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame());
OwnPtr<StorageQuotaCallbacks> callbacks = StorageQuotaCallbacksImpl::create(resolver);
webFrame->client()->requestStorageQuota(webFrame, WebStorageQuotaTypePersistent, newQuotaInBytes, callbacks.release());
} else {
« no previous file with comments | « Source/web/StorageClientImpl.cpp ('k') | Source/web/TextFinder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698