| Index: third_party/WebKit/Source/core/frame/FrameView.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| index 2678d3272d5ed2bc10ecc2079a7727bce369370a..ffa4af47202a13774223b6e044804ff4b0b13e4d 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -224,7 +224,7 @@ void FrameView::reset()
|
| m_visuallyNonEmptyPixelCount = 0;
|
| m_isVisuallyNonEmpty = false;
|
| clearFragmentAnchor();
|
| - m_viewportConstrainedObjects.clear();
|
| + m_viewportConstrainedObjects.reset();
|
| m_layoutSubtreeRootList.clear();
|
| m_orthogonalWritingModeRootList.clear();
|
| }
|
| @@ -825,7 +825,7 @@ void FrameView::prepareLayoutAnalyzer()
|
| bool isTracing = false;
|
| TRACE_EVENT_CATEGORY_GROUP_ENABLED(TRACE_DISABLED_BY_DEFAULT("blink.debug.layout"), &isTracing);
|
| if (!isTracing) {
|
| - m_analyzer.clear();
|
| + m_analyzer.reset();
|
| return;
|
| }
|
| if (!m_analyzer)
|
|
|