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

Unified Diff: third_party/WebKit/Source/core/dom/StyleEngine.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/dom/StyleEngine.cpp
diff --git a/third_party/WebKit/Source/core/dom/StyleEngine.cpp b/third_party/WebKit/Source/core/dom/StyleEngine.cpp
index 0ecb73f7b54555582b4449b27fec49837520bde0..36e75476117687f322b3b31df95c9320ce9d1e8e 100644
--- a/third_party/WebKit/Source/core/dom/StyleEngine.cpp
+++ b/third_party/WebKit/Source/core/dom/StyleEngine.cpp
@@ -340,7 +340,7 @@ void StyleEngine::updateActiveStyleSheets() {
m_activeTreeScopes.erase(treeScope);
}
- InspectorInstrumentation::activeStyleSheetsUpdated(m_document);
+ probe::activeStyleSheetsUpdated(m_document);
m_dirtyTreeScopes.clear();
m_documentScopeDirty = false;
@@ -586,7 +586,7 @@ void StyleEngine::fontsNeedUpdate(CSSFontSelector*) {
document().setNeedsStyleRecalc(
SubtreeStyleChange,
StyleChangeReasonForTracing::create(StyleChangeReason::Fonts));
- InspectorInstrumentation::fontsUpdated(m_document);
+ probe::fontsUpdated(m_document);
}
void StyleEngine::setFontSelector(CSSFontSelector* fontSelector) {

Powered by Google App Engine
This is Rietveld 408576698