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

Unified Diff: third_party/WebKit/Source/core/loader/ProgressTracker.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/loader/ProgressTracker.cpp
diff --git a/third_party/WebKit/Source/core/loader/ProgressTracker.cpp b/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
index bc0b3adc6c3b32b50dba314b015793b22703d511..da1c90211dddebd08e6b36bf5d7bc70327260dd6 100644
--- a/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
+++ b/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
@@ -109,7 +109,7 @@ void ProgressTracker::progressStarted(FrameLoadType type) {
reset();
m_progressValue = initialProgressValue;
m_frame->setIsLoading(true);
- InspectorInstrumentation::frameStartedLoading(m_frame, type);
+ probe::frameStartedLoading(m_frame, type);
}
void ProgressTracker::progressCompleted() {
@@ -118,7 +118,7 @@ void ProgressTracker::progressCompleted() {
sendFinalProgress();
reset();
localFrameClient()->didStopLoading();
- InspectorInstrumentation::frameStoppedLoading(m_frame);
+ probe::frameStoppedLoading(m_frame);
}
void ProgressTracker::finishedParsing() {

Powered by Google App Engine
This is Rietveld 408576698