| 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 a2e0bdb3c4ea323c051952daee7ad2c792735159..84614f71b601a8ab63702803cc56eacb25447863 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -54,7 +54,6 @@
|
| #include "core/frame/LocalFrameClient.h"
|
| #include "core/frame/Location.h"
|
| #include "core/frame/PageScaleConstraintsSet.h"
|
| -#include "core/frame/PerformanceMonitor.h"
|
| #include "core/frame/RemoteFrame.h"
|
| #include "core/frame/RemoteFrameView.h"
|
| #include "core/frame/Settings.h"
|
| @@ -1175,7 +1174,7 @@ void FrameView::layout() {
|
| Document* document = m_frame->document();
|
| TRACE_EVENT_BEGIN1("devtools.timeline", "Layout", "beginData",
|
| InspectorLayoutEvent::beginData(this));
|
| - PerformanceMonitor::willUpdateLayout(document);
|
| + InspectorInstrumentation::willUpdateLayout(document);
|
|
|
| performPreLayoutTasks();
|
|
|
| @@ -1319,7 +1318,6 @@ void FrameView::layout() {
|
| TRACE_EVENT_END1("devtools.timeline", "Layout", "endData",
|
| InspectorLayoutEvent::endData(rootForThisLayout));
|
| InspectorInstrumentation::didUpdateLayout(m_frame.get());
|
| - PerformanceMonitor::didUpdateLayout(document);
|
|
|
| m_nestedLayoutCount--;
|
| if (m_nestedLayoutCount)
|
|
|