Changeset 118653 in webkit
- Timestamp:
- May 28, 2012, 1:17:51 AM (14 years ago)
- Location:
- trunk/Source/WebKit/chromium
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
src/FrameLoaderClientImpl.cpp (modified) (1 diff)
-
src/FrameLoaderClientImpl.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/chromium/ChangeLog
r118605 r118653 1 2012-05-28 MORITA Hajime <morrita@google.com> 2 3 https://bugs.webkit.org/show_bug.cgi?id=87609 4 [Chromium] FrameLoaderClient::allowStyleScoped() should be implemented interms of WebPermissionClient 5 6 Reviewed by Kent Tamura. 7 8 Added allowStyleScoped() implementation which is essentially same as shadowDOMAllowed(). 9 10 * src/FrameLoaderClientImpl.cpp: 11 * src/FrameLoaderClientImpl.h: 12 (FrameLoaderClientImpl): 13 1 14 2012-05-25 Ryosuke Niwa <rniwa@webkit.org> 2 15 -
trunk/Source/WebKit/chromium/src/FrameLoaderClientImpl.cpp
r118097 r118653 249 249 } 250 250 251 bool FrameLoaderClientImpl::allowStyleScoped(bool enabledAsRuntimeFeature) OVERRIDE 252 { 253 WebViewImpl* webview = m_webFrame->viewImpl(); 254 if (webview && webview->permissionClient()) 255 return webview->permissionClient()->allowWebComponents(m_webFrame, enabledAsRuntimeFeature); 256 257 return enabledAsRuntimeFeature; 258 } 259 251 260 void FrameLoaderClientImpl::didNotAllowScript() 252 261 { -
trunk/Source/WebKit/chromium/src/FrameLoaderClientImpl.h
r118097 r118653 201 201 virtual bool allowRunningInsecureContent(bool enabledPerSettings, WebCore::SecurityOrigin*, const WebCore::KURL&); 202 202 virtual bool shadowDOMAllowed(bool enabledAsRuntimeFeature) OVERRIDE; 203 virtual bool allowStyleScoped(bool enabledAsRuntimeFeature) OVERRIDE; 203 204 virtual void didNotAllowScript(); 204 205 virtual void didNotAllowPlugins();
Note:
See TracChangeset
for help on using the changeset viewer.