Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Unified Diff: third_party/WebKit/Source/core/frame/PerformanceMonitor.cpp

Issue 2727633006: DevTools: Rename InspectorInstrumentation:: namespace into probe:: (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {
« no previous file with comments | « third_party/WebKit/Source/core/frame/PerformanceMonitor.h ('k') | third_party/WebKit/Source/core/frame/VisualViewport.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698