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

Unified Diff: Source/devtools/front_end/timeline/TimelineUIUtils.js

Issue 400143002: DevTools: Make target on TimelineRecord nullable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 6 years, 5 months 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/timeline/TimelineUIUtils.js
diff --git a/Source/devtools/front_end/timeline/TimelineUIUtils.js b/Source/devtools/front_end/timeline/TimelineUIUtils.js
index 20024eb5a62dc3f59e20d50908052d68d0e7fd7c..f9de289821abb7b3e5ed5164571d7be2a194bc0a 100644
--- a/Source/devtools/front_end/timeline/TimelineUIUtils.js
+++ b/Source/devtools/front_end/timeline/TimelineUIUtils.js
@@ -102,10 +102,9 @@ WebInspector.TimelineUIUtils.prototype = {
/**
* @param {!WebInspector.TimelineModel.Record} record
* @param {!WebInspector.Linkifier} linkifier
- * @param {boolean} loadedFromFile
* @return {?Node}
*/
- buildDetailsNode: function(record, linkifier, loadedFromFile)
+ buildDetailsNode: function(record, linkifier)
{
throw new Error("Not implemented.");
},
@@ -114,9 +113,8 @@ WebInspector.TimelineUIUtils.prototype = {
* @param {!WebInspector.TimelineModel} model
* @param {!WebInspector.Linkifier} linkifier
* @param {function(!DocumentFragment)} callback
- * @param {boolean} loadedFromFile
*/
- generateDetailsContent: function(record, model, linkifier, callback, loadedFromFile)
+ generateDetailsContent: function(record, model, linkifier, callback)
{
throw new Error("Not implemented.");
},
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | Source/devtools/front_end/timeline/TimelineUIUtilsImpl.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698