| Index: tracing/tracing/model/thread_slice.html
|
| diff --git a/tracing/tracing/model/thread_slice.html b/tracing/tracing/model/thread_slice.html
|
| index 67dba1910f581dd499d2fc5bec170102945bbb1c..561697303bbe4dae36ef38fb8a13417c5976e3cb 100644
|
| --- a/tracing/tracing/model/thread_slice.html
|
| +++ b/tracing/tracing/model/thread_slice.html
|
| @@ -18,7 +18,7 @@ tr.exportTo('tr.model', function() {
|
|
|
| /**
|
| * A ThreadSlice represents an interval of time on a thread resource
|
| - * with associated nestinged slice information.
|
| + * with associated nesting slice information.
|
| *
|
| * ThreadSlices are typically associated with a specific trace event pair on a
|
| * specific thread.
|
| @@ -40,7 +40,14 @@ tr.exportTo('tr.model', function() {
|
| }
|
|
|
| ThreadSlice.prototype = {
|
| - __proto__: Slice.prototype
|
| + __proto__: Slice.prototype,
|
| +
|
| + getProcess: function() {
|
| + var thread = this.parentContainer;
|
| + if (thread && thread.getProcess)
|
| + return thread.getProcess();
|
| + return undefined;
|
| + }
|
| };
|
|
|
| tr.model.EventRegistry.register(
|
|
|