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

Unified Diff: third_party/WebKit/Source/core/frame/DOMTimer.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/DOMTimer.cpp
diff --git a/third_party/WebKit/Source/core/frame/DOMTimer.cpp b/third_party/WebKit/Source/core/frame/DOMTimer.cpp
index e3be451a71491ec3c0b57390b99f4d40d4e453d6..427b26cee32bb11e26c17efb3de21d89632cf31a 100644
--- a/third_party/WebKit/Source/core/frame/DOMTimer.cpp
+++ b/third_party/WebKit/Source/core/frame/DOMTimer.cpp
@@ -104,7 +104,7 @@ DOMTimer::DOMTimer(ExecutionContext* context,
startRepeating(intervalMilliseconds, BLINK_FROM_HERE);
suspendIfNeeded();
- InspectorInstrumentation::asyncTaskScheduledBreakable(
+ probe::asyncTaskScheduledBreakable(
context, singleShot ? "setTimeout" : "setInterval", this, !singleShot);
}
@@ -114,7 +114,7 @@ DOMTimer::~DOMTimer() {
}
void DOMTimer::stop() {
- InspectorInstrumentation::asyncTaskCanceledBreakable(
+ probe::asyncTaskCanceledBreakable(
getExecutionContext(),
repeatInterval() ? "clearInterval" : "clearTimeout", this);
@@ -145,7 +145,7 @@ void DOMTimer::fired() {
InspectorTimerFireEvent::data(context, m_timeoutID));
PerformanceMonitor::HandlerCall handlerCall(
context, repeatInterval() ? "setInterval" : "setTimeout", true);
- InspectorInstrumentation::AsyncTask asyncTask(context, this, "timerFired");
+ probe::AsyncTask asyncTask(context, this, "timerFired");
// Simple case for non-one-shot timers.
if (isActive()) {
« no previous file with comments | « third_party/WebKit/Source/core/fileapi/FileReader.cpp ('k') | third_party/WebKit/Source/core/frame/DOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698