| Index: Source/devtools/front_end/timeline/TracingModel.js
|
| diff --git a/Source/devtools/front_end/timeline/TracingModel.js b/Source/devtools/front_end/timeline/TracingModel.js
|
| index 4877ded527be345efa1d48a2b9f1832427c6cdf8..b047beb820d23d0844355dd63959e1a07b457299 100644
|
| --- a/Source/devtools/front_end/timeline/TracingModel.js
|
| +++ b/Source/devtools/front_end/timeline/TracingModel.js
|
| @@ -808,7 +808,10 @@ WebInspector.TracingModel.Thread.prototype = {
|
| target: function()
|
| {
|
| //FIXME: correctly specify target
|
| - return WebInspector.targetManager.targets()[0] || null;
|
| + if (this.name() === "CrRendererMain")
|
| + return WebInspector.targetManager.targets()[0] || null;
|
| + else
|
| + return null;
|
| },
|
|
|
| /**
|
|
|