Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: LayoutTests/http/tests/inspector/timeline-test.js

Issue 705063004: DevTools: Promisify WebInspector.TempFile (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: teste were fixed Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698