| Index: third_party/WebKit/Source/core/frame/PerformanceMonitor.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/PerformanceMonitor.cpp b/third_party/WebKit/Source/core/frame/PerformanceMonitor.cpp
|
| index 96742d1f89272d3e8f567e47aeafb3becb646c88..a56f84633e41710fe80c719a329d019e66a765b6 100644
|
| --- a/third_party/WebKit/Source/core/frame/PerformanceMonitor.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/PerformanceMonitor.cpp
|
| @@ -227,8 +227,7 @@ void PerformanceMonitor::didUpdateLayout() {
|
| }
|
| }
|
|
|
| -void PerformanceMonitor::will(
|
| - const InspectorInstrumentation::RecalculateStyle&) {
|
| +void PerformanceMonitor::will(const probe::RecalculateStyle&) {
|
| if (!m_enabled)
|
| return;
|
|
|
| @@ -236,8 +235,7 @@ void PerformanceMonitor::will(
|
| m_styleStartTime = WTF::monotonicallyIncreasingTime();
|
| }
|
|
|
| -void PerformanceMonitor::did(
|
| - const InspectorInstrumentation::RecalculateStyle&) {
|
| +void PerformanceMonitor::did(const probe::RecalculateStyle&) {
|
| if (!m_enabled)
|
| return;
|
| if (m_thresholds[kLongLayout] && m_scriptDepth) {
|
|
|