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; |
} |