| Index: Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp
|
| index d7385396782b16cd1caa9f5d476a1cc6a02aca4d..27c005c5cf5df26153485fc5c89f20f7d39ee13d 100644
|
| --- a/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -754,6 +754,13 @@ void FrameLoaderClientImpl::didLoseWebGLContext(int arbRobustnessContextLostReas
|
| m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessContextLostReason);
|
| }
|
|
|
| +bool FrameLoaderClientImpl::allowWebGLDebugRendererInfo()
|
| +{
|
| + if (m_webFrame->client())
|
| + return m_webFrame->client()->allowWebGLDebugRendererInfo(m_webFrame);
|
| + return false;
|
| +}
|
| +
|
| void FrameLoaderClientImpl::dispatchWillInsertBody()
|
| {
|
| if (m_webFrame->client())
|
|
|