| 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 <link rel="import" href="/tracing/base/base.html"> | 7 <link rel="import" href="/tracing/base/base.html"> |
| 8 <script> | 8 <script> |
| 9 'use strict'; | 9 'use strict'; |
| 10 | 10 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 } | 90 } |
| 91 return stack; | 91 return stack; |
| 92 }, | 92 }, |
| 93 | 93 |
| 94 getUserFriendlyStackTrace: function() { | 94 getUserFriendlyStackTrace: function() { |
| 95 return this.stackTrace.map(function(x) { return x.title; }); | 95 return this.stackTrace.map(function(x) { return x.title; }); |
| 96 } | 96 } |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 return { | 99 return { |
| 100 StackFrame: StackFrame | 100 StackFrame, |
| 101 }; | 101 }; |
| 102 }); | 102 }); |
| 103 </script> | 103 </script> |
| OLD | NEW |