OLD | NEW |
1 var initialize_Timeline = function() { | 1 var initialize_Timeline = function() { |
2 | 2 |
3 // Scrub values when printing out these properties in the record or data field. | 3 // Scrub values when printing out these properties in the record or data field. |
4 InspectorTest.timelinePropertyFormatters = { | 4 InspectorTest.timelinePropertyFormatters = { |
5 children: "formatAsTypeName", | 5 children: "formatAsTypeName", |
6 endTime: "formatAsTypeName", | 6 endTime: "formatAsTypeName", |
7 requestId: "formatAsTypeName", | 7 requestId: "formatAsTypeName", |
8 startTime: "formatAsTypeName", | 8 startTime: "formatAsTypeName", |
9 stackTrace: "formatAsTypeName", | 9 stackTrace: "formatAsTypeName", |
10 url: "formatAsURL", | 10 url: "formatAsURL", |
11 scriptName: "formatAsTypeName", | 11 scriptName: "formatAsTypeName", |
12 usedHeapSize: "formatAsTypeName", | |
13 usedHeapSizeDelta: "skip", | 12 usedHeapSizeDelta: "skip", |
14 mimeType: "formatAsTypeName", | 13 mimeType: "formatAsTypeName", |
15 id: "formatAsTypeName", | 14 id: "formatAsTypeName", |
16 counters: "formatAsTypeName", | 15 counters: "formatAsTypeName", |
17 timerId: "formatAsTypeName", | 16 timerId: "formatAsTypeName", |
18 scriptLine: "formatAsTypeName", | 17 scriptLine: "formatAsTypeName", |
19 layerId: "formatAsTypeName", | 18 layerId: "formatAsTypeName", |
20 lineNumber: "formatAsTypeName", | 19 lineNumber: "formatAsTypeName", |
21 frameId: "formatAsTypeName", | 20 frameId: "formatAsTypeName", |
22 encodedDataLength: "formatAsTypeName", | 21 encodedDataLength: "formatAsTypeName", |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 return this._fileSize; | 249 return this._fileSize; |
251 }, | 250 }, |
252 | 251 |
253 fileName: function() | 252 fileName: function() |
254 { | 253 { |
255 return "fakeFile"; | 254 return "fakeFile"; |
256 } | 255 } |
257 }; | 256 }; |
258 | 257 |
259 }; | 258 }; |
OLD | NEW |