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

Unified Diff: WebKit/chromium/src/FrameLoaderClientImpl.cpp

Issue 3453022: Merge 68061 - 2010-09-22 Matt Perry <mpcomplete@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/517/
Patch Set: Created 10 years, 3 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 | « WebKit/chromium/src/FrameLoaderClientImpl.h ('k') | WebKit/chromium/src/WebScriptController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebKit/chromium/src/FrameLoaderClientImpl.cpp
===================================================================
--- WebKit/chromium/src/FrameLoaderClientImpl.cpp (revision 68288)
+++ WebKit/chromium/src/FrameLoaderClientImpl.cpp (working copy)
@@ -147,6 +147,14 @@
m_webFrame->client()->didCreateIsolatedScriptContext(m_webFrame);
}
+bool FrameLoaderClientImpl::allowScriptExtension(const String& extensionName,
+ int extensionGroup)
+{
+ if (m_webFrame->client())
+ return m_webFrame->client()->allowScriptExtension(m_webFrame, extensionName, extensionGroup);
+ return false;
+}
+
void FrameLoaderClientImpl::didPerformFirstNavigation() const
{
}
« no previous file with comments | « WebKit/chromium/src/FrameLoaderClientImpl.h ('k') | WebKit/chromium/src/WebScriptController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698