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

Unified Diff: third_party/WebKit/Source/modules/filesystem/DOMFileSystem.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/modules/filesystem/DOMFileSystem.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
index a013f6b99ba2e98f337574da4b7f4b01ea22c5b3..d93aed62cbf205a804729d73b4cf4b6253fde013 100644
--- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
@@ -60,8 +60,8 @@ void runCallback(ExecutionContext* executionContext,
if (!executionContext)
return;
DCHECK(executionContext->isContextThread());
- InspectorInstrumentation::AsyncTask asyncTask(executionContext, task.get(),
- true /* isInstrumented */);
+ probe::AsyncTask asyncTask(executionContext, task.get(),
+ true /* isInstrumented */);
(*task)();
}
@@ -208,8 +208,8 @@ void DOMFileSystem::createFile(const FileEntry* fileEntry,
void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext,
std::unique_ptr<WTF::Closure> task) {
DCHECK(executionContext->isContextThread());
- InspectorInstrumentation::asyncTaskScheduled(
- executionContext, taskNameForInstrumentation(), task.get());
+ probe::asyncTaskScheduled(executionContext, taskNameForInstrumentation(),
+ task.get());
TaskRunnerHelper::get(TaskType::FileReading, executionContext)
->postTask(BLINK_FROM_HERE,
WTF::bind(&runCallback, wrapWeakPersistent(executionContext),
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/GlobalFetch.cpp ('k') | third_party/WebKit/Source/modules/filesystem/FileWriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698