| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/base/guid.html"> | 8 <link rel="import" href="/tracing/base/guid.html"> |
| 9 <link rel="import" href="/tracing/base/range.html"> | 9 <link rel="import" href="/tracing/base/range.html"> |
| 10 <link rel="import" href="/tracing/model/counter_series.html"> | 10 <link rel="import" href="/tracing/model/counter_series.html"> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 }, | 49 }, |
| 50 | 50 |
| 51 get category() { | 51 get category() { |
| 52 return this.category_; | 52 return this.category_; |
| 53 }, | 53 }, |
| 54 | 54 |
| 55 get name() { | 55 get name() { |
| 56 return this.name_; | 56 return this.name_; |
| 57 }, | 57 }, |
| 58 | 58 |
| 59 findTopmostSlicesInThisContainer: function(eventPredicate, callback, | 59 childEvents: function*() { |
| 60 opt_this) { | |
| 61 }, | |
| 62 | |
| 63 childEvents: function*(eventTypePredicate, opt_this) { | |
| 64 }, | 60 }, |
| 65 | 61 |
| 66 childEventContainers: function*() { | 62 childEventContainers: function*() { |
| 67 yield * this.series; | 63 yield * this.series; |
| 68 }, | 64 }, |
| 69 | 65 |
| 70 set timestamps(arg) { | 66 set timestamps(arg) { |
| 71 throw new Error('Bad counter API. No cookie.'); | 67 throw new Error('Bad counter API. No cookie.'); |
| 72 }, | 68 }, |
| 73 | 69 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 if (tmp == 0) | 186 if (tmp == 0) |
| 191 return x.tid - y.tid; | 187 return x.tid - y.tid; |
| 192 return tmp; | 188 return tmp; |
| 193 }; | 189 }; |
| 194 | 190 |
| 195 return { | 191 return { |
| 196 Counter: Counter | 192 Counter: Counter |
| 197 }; | 193 }; |
| 198 }); | 194 }); |
| 199 </script> | 195 </script> |
| OLD | NEW |