| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2014 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2014 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/iteration_helpers.html"> | 8 <link rel="import" href="/tracing/base/utils.html"> |
| 9 <link rel="import" href="/tracing/model/helpers/chrome_process_helper.html"> | 9 <link rel="import" href="/tracing/model/helpers/chrome_process_helper.html"> |
| 10 | 10 |
| 11 <script> | 11 <script> |
| 12 'use strict'; | 12 'use strict'; |
| 13 | 13 |
| 14 /** | 14 /** |
| 15 * @fileoverview Utilities for accessing trace data about the Chrome browser. | 15 * @fileoverview Utilities for accessing trace data about the Chrome browser. |
| 16 */ | 16 */ |
| 17 tr.exportTo('tr.model.helpers', function() { | 17 tr.exportTo('tr.model.helpers', function() { |
| 18 function ChromeBrowserHelper(modelHelper, process) { | 18 function ChromeBrowserHelper(modelHelper, process) { |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 } | 110 } |
| 111 } | 111 } |
| 112 } | 112 } |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 return { | 115 return { |
| 116 ChromeBrowserHelper, | 116 ChromeBrowserHelper, |
| 117 }; | 117 }; |
| 118 }); | 118 }); |
| 119 </script> | 119 </script> |
| OLD | NEW |