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

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: oops Created 4 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
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 72b3498927da1ccff9c73db7328507b06fed2501..f98ec2af8cfa0e76d6546467b5f073ff6829af54 100644
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
@@ -975,12 +975,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