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

Unified Diff: Source/web/MediaKeysClientImpl.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/LocalFileSystemClient.cpp ('k') | Source/web/SharedWorkerRepositoryClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/MediaKeysClientImpl.cpp
diff --git a/Source/web/MediaKeysClientImpl.cpp b/Source/web/MediaKeysClientImpl.cpp
index 5b83f56affb6a371acfe31b5b5f098dab6dafa9e..c4ecce14f00a4f8b90df019d1814e49cfbf809fd 100644
--- a/Source/web/MediaKeysClientImpl.cpp
+++ b/Source/web/MediaKeysClientImpl.cpp
@@ -6,7 +6,7 @@
#include "MediaKeysClientImpl.h"
#include "WebFrameClient.h"
-#include "WebFrameImpl.h"
+#include "WebLocalFrameImpl.h"
#include "core/dom/Document.h"
#include "core/dom/ExecutionContext.h"
#include "public/platform/WebContentDecryptionModule.h"
@@ -22,7 +22,7 @@ MediaKeysClientImpl::MediaKeysClientImpl()
PassOwnPtr<WebContentDecryptionModule> MediaKeysClientImpl::createContentDecryptionModule(WebCore::ExecutionContext* executionContext, const String& keySystem)
{
Document* document = toDocument(executionContext);
- WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
+ WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame());
WebSecurityOrigin securityOrigin(executionContext->securityOrigin());
return adoptPtr(webFrame->client()->createContentDecryptionModule(webFrame, securityOrigin, keySystem));
}
« no previous file with comments | « Source/web/LocalFileSystemClient.cpp ('k') | Source/web/SharedWorkerRepositoryClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698