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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorPageAgent.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/inspector/InspectorPageAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
index f0f7669c868d0aa7f6d2f852119c60b0291c3740..f3e0dd346be972118ee08591f3c1907fce2345a9 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
@@ -725,11 +725,9 @@ void InspectorPageAgent::didResizeMainFrame() {
frontend()->frameResized();
}
-void InspectorPageAgent::will(
- const InspectorInstrumentation::RecalculateStyle&) {}
+void InspectorPageAgent::will(const probe::RecalculateStyle&) {}
-void InspectorPageAgent::did(
- const InspectorInstrumentation::RecalculateStyle&) {
+void InspectorPageAgent::did(const probe::RecalculateStyle&) {
if (m_enabled && m_client)
m_client->pageLayoutInvalidated(false);
}

Powered by Google App Engine
This is Rietveld 408576698