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

Unified Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp

Issue 1747283003: Remove redundant codepath for webgl api blocking (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better handle 'exit_on_context_lost' Created 4 years, 9 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
Index: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
index 6a74bb269815f6ceac22616c1e5cb4f7404f6e8a..c90d8c1bec52d270f2bd02785853e25dddb77aff 100644
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
@@ -961,12 +961,6 @@ bool FrameLoaderClientImpl::allowWebGL(bool enabledPerSettings)
return enabledPerSettings;
}
-void FrameLoaderClientImpl::didLoseWebGLContext(int arbRobustnessContextLostReason)
-{
- if (m_webFrame->client())
- m_webFrame->client()->didLoseWebGLContext(arbRobustnessContextLostReason);
-}
-
void FrameLoaderClientImpl::dispatchWillInsertBody()
{
if (m_webFrame->client())

Powered by Google App Engine
This is Rietveld 408576698