OLD | NEW |
1 var initialize_Timeline = function() { | 1 var initialize_Timeline = function() { |
2 | 2 |
3 InspectorTest.preloadPanel("timeline"); | 3 InspectorTest.preloadPanel("timeline"); |
| 4 WebInspector.TempFile = InspectorTest.TempFileMock; |
4 | 5 |
5 // Scrub values when printing out these properties in the record or data field. | 6 // Scrub values when printing out these properties in the record or data field. |
6 InspectorTest.timelinePropertyFormatters = { | 7 InspectorTest.timelinePropertyFormatters = { |
7 children: "formatAsTypeName", | 8 children: "formatAsTypeName", |
8 endTime: "formatAsTypeName", | 9 endTime: "formatAsTypeName", |
9 requestId: "formatAsTypeName", | 10 requestId: "formatAsTypeName", |
10 startTime: "formatAsTypeName", | 11 startTime: "formatAsTypeName", |
11 stackTrace: "formatAsTypeName", | 12 stackTrace: "formatAsTypeName", |
12 url: "formatAsURL", | 13 url: "formatAsURL", |
13 scriptName: "formatAsTypeName", | 14 scriptName: "formatAsTypeName", |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 return this._fileSize; | 362 return this._fileSize; |
362 }, | 363 }, |
363 | 364 |
364 fileName: function() | 365 fileName: function() |
365 { | 366 { |
366 return "fakeFile"; | 367 return "fakeFile"; |
367 } | 368 } |
368 }; | 369 }; |
369 | 370 |
370 }; | 371 }; |
OLD | NEW |