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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/extensions/ExtensionTraceProvider.js

Issue 2073343002: Timeline addTraceProvider API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: checkbox prototype Created 4 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 /**
2 * @constructor
3 * @param {string} extensionOrigin
4 * @param {string} id
5 * @param {string} categoryName
6 * @param {string} categoryTooltip
7 */
8 WebInspector.ExtensionTraceProvider = function(extensionOrigin, id, categoryName , categoryTooltip)
9 {
10 this.extensionOrigin = extensionOrigin;
11 this.id = id;
12 this.categoryName = categoryName;
13 this.categoryTooltip = categoryTooltip;
14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698