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

Unified Diff: Source/web/IndexedDBClientImpl.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/FrameLoaderClientImpl.cpp ('k') | Source/web/LinkHighlight.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/IndexedDBClientImpl.cpp
diff --git a/Source/web/IndexedDBClientImpl.cpp b/Source/web/IndexedDBClientImpl.cpp
index c51c6ffc2f9944416def2f1a25b84aebb16c31ab..af26e3dec5bf5b65216cae11277a58f5dc40dc71 100644
--- a/Source/web/IndexedDBClientImpl.cpp
+++ b/Source/web/IndexedDBClientImpl.cpp
@@ -29,8 +29,8 @@
#include "config.h"
#include "IndexedDBClientImpl.h"
-#include "WebFrameImpl.h"
#include "WebKit.h"
+#include "WebLocalFrameImpl.h"
#include "WebPermissionClient.h"
#include "WebSecurityOrigin.h"
#include "WorkerPermissionClient.h"
@@ -56,7 +56,7 @@ bool IndexedDBClientImpl::allowIndexedDB(ExecutionContext* context, const String
if (context->isDocument()) {
WebSecurityOrigin origin(context->securityOrigin());
Document* document = toDocument(context);
- WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
+ WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame());
// FIXME: webFrame->permissionClient() returns 0 in test_shell and content_shell http://crbug.com/137269
return !webFrame->permissionClient() || webFrame->permissionClient()->allowIndexedDB(name, origin);
}
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | Source/web/LinkHighlight.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698