| 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 0250fdd517bad2b10351104035fa52f7ca5e9bbb..f639d80f6d7e0c34cdf33d8a3891c8987b2a5f9e 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -50,7 +50,6 @@
|
| #include "core/frame/LocalFrame.h"
|
| #include "core/frame/Location.h"
|
| #include "core/frame/PageScaleConstraintsSet.h"
|
| -#include "core/frame/PerformanceMonitor.h"
|
| #include "core/frame/Settings.h"
|
| #include "core/frame/VisualViewport.h"
|
| #include "core/html/HTMLFrameElement.h"
|
| @@ -1090,12 +1089,12 @@
|
| DocumentLifecycle::Scope lifecycleScope(lifecycle(),
|
| DocumentLifecycle::LayoutClean);
|
|
|
| - Document* document = m_frame->document();
|
| TRACE_EVENT_BEGIN1("devtools.timeline", "Layout", "beginData",
|
| InspectorLayoutEvent::beginData(this));
|
| - PerformanceMonitor::willUpdateLayout(document);
|
|
|
| performPreLayoutTasks();
|
| +
|
| + Document* document = m_frame->document();
|
|
|
| // TODO(crbug.com/460956): The notion of a single root for layout is no longer
|
| // applicable. Remove or update this code.
|
| @@ -1237,7 +1236,6 @@
|
| TRACE_EVENT_END1("devtools.timeline", "Layout", "endData",
|
| InspectorLayoutEvent::endData(rootForThisLayout));
|
| InspectorInstrumentation::didUpdateLayout(m_frame.get());
|
| - PerformanceMonitor::didUpdateLayout(document);
|
|
|
| m_nestedLayoutCount--;
|
| if (m_nestedLayoutCount)
|
|
|