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

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

Issue 2632633006: Implement NavigationThrottle::BLOCK_REQUEST_AND_COLLAPSE. (Closed)
Patch Set: Extend tests, fix redirects. Non-PlzNavigate version still broken. Created 3 years, 10 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/RemoteFrameOwner.cpp
diff --git a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
index 8cb4c3ae54e46c34154dfc2ad76c331b5d46c6c9..6d0af28bd84ae584e46dcb231bc28f11ee9a1d99 100644
--- a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
+++ b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
@@ -34,6 +34,11 @@ void RemoteFrameOwner::setScrollingMode(
m_scrolling = static_cast<ScrollbarMode>(mode);
}
+void RemoteFrameOwner::setCollapsedByClient(bool collapsed) {
+ // Always set by the browser through FrameOwnerProperties.
dcheng 2017/02/28 05:36:22 Since this is a local-only method, it should only
engedy 2017/04/10 14:36:42 Done.
+ NOTREACHED();
+}
+
void RemoteFrameOwner::setContentFrame(Frame& frame) {
m_frame = &frame;
}

Powered by Google App Engine
This is Rietveld 408576698