Fix broken XEvent Profiler (#504)

* Fix broken profilergrid and choose columns dialog

* Additional profiler changes

* Additonal profiler bugs fixes
This commit is contained in:
Karl Burtram
2018-01-17 14:24:05 -08:00
committed by GitHub
parent 0cc7c540a9
commit 5afa287e47
5 changed files with 82 additions and 32 deletions

View File

@@ -349,10 +349,7 @@ export class MainThreadDataProtocol extends MainThreadDataProtocolShape {
// Profiler handlers
public $onSessionEventsAvailable(handle: number, response: data.ProfilerSessionEvents): void {
this._profilerService.onMoreRows(response);
//this._profilerService.onMoreRows
//this._taskService.onNewTaskCreated(handle, taskInfo);
}
public $unregisterProvider(handle: number): TPromise<any> {
@@ -364,6 +361,4 @@ export class MainThreadDataProtocol extends MainThreadDataProtocolShape {
return undefined;
}
}