| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2012 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/color_scheme.html"> | 8 <link rel="import" href="/tracing/base/color_scheme.html"> |
| 9 <link rel="import" href="/tracing/base/iteration_helpers.html"> | |
| 10 <link rel="import" href="/tracing/base/trace_stream.html"> | 9 <link rel="import" href="/tracing/base/trace_stream.html"> |
| 10 <link rel="import" href="/tracing/base/utils.html"> |
| 11 <link rel="import" href="/tracing/extras/importer/linux_perf/android_parser.html
"> | 11 <link rel="import" href="/tracing/extras/importer/linux_perf/android_parser.html
"> |
| 12 <link rel="import" href="/tracing/extras/importer/linux_perf/binder_parser.html"
> | 12 <link rel="import" href="/tracing/extras/importer/linux_perf/binder_parser.html"
> |
| 13 <link rel="import" href="/tracing/extras/importer/linux_perf/bus_parser.html"> | 13 <link rel="import" href="/tracing/extras/importer/linux_perf/bus_parser.html"> |
| 14 <link rel="import" href="/tracing/extras/importer/linux_perf/clock_parser.html"> | 14 <link rel="import" href="/tracing/extras/importer/linux_perf/clock_parser.html"> |
| 15 <link rel="import" href="/tracing/extras/importer/linux_perf/cpufreq_parser.html
"> | 15 <link rel="import" href="/tracing/extras/importer/linux_perf/cpufreq_parser.html
"> |
| 16 <link rel="import" href="/tracing/extras/importer/linux_perf/disk_parser.html"> | 16 <link rel="import" href="/tracing/extras/importer/linux_perf/disk_parser.html"> |
| 17 <link rel="import" href="/tracing/extras/importer/linux_perf/drm_parser.html"> | 17 <link rel="import" href="/tracing/extras/importer/linux_perf/drm_parser.html"> |
| 18 <link rel="import" href="/tracing/extras/importer/linux_perf/exynos_parser.html"
> | 18 <link rel="import" href="/tracing/extras/importer/linux_perf/exynos_parser.html"
> |
| 19 <link rel="import" href="/tracing/extras/importer/linux_perf/gesture_parser.html
"> | 19 <link rel="import" href="/tracing/extras/importer/linux_perf/gesture_parser.html
"> |
| 20 <link rel="import" href="/tracing/extras/importer/linux_perf/i2c_parser.html"> | 20 <link rel="import" href="/tracing/extras/importer/linux_perf/i2c_parser.html"> |
| (...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 929 | 929 |
| 930 tr.importer.Importer.register(FTraceImporter); | 930 tr.importer.Importer.register(FTraceImporter); |
| 931 | 931 |
| 932 return { | 932 return { |
| 933 FTraceImporter, | 933 FTraceImporter, |
| 934 _FTraceImporterTestExports: TestExports, | 934 _FTraceImporterTestExports: TestExports, |
| 935 IMPORT_PRIORITY, | 935 IMPORT_PRIORITY, |
| 936 }; | 936 }; |
| 937 }); | 937 }); |
| 938 </script> | 938 </script> |
| OLD | NEW |