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

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

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 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
OLDNEW
1 /** 1 /**
2 * @constructor 2 * @constructor
3 * @param {string} extensionOrigin 3 * @param {string} extensionOrigin
4 * @param {string} id 4 * @param {string} id
5 * @param {string} categoryName 5 * @param {string} categoryName
6 * @param {string} categoryTooltip 6 * @param {string} categoryTooltip
7 */ 7 */
8 WebInspector.ExtensionTraceProvider = function(extensionOrigin, id, categoryName , categoryTooltip) 8 WebInspector.ExtensionTraceProvider = function(extensionOrigin, id, categoryName , categoryTooltip)
9 { 9 {
10 this._extensionOrigin = extensionOrigin; 10 this._extensionOrigin = extensionOrigin;
11 this._id = id; 11 this._id = id;
12 this._categoryName = categoryName; 12 this._categoryName = categoryName;
13 this._categoryTooltip = categoryTooltip; 13 this._categoryTooltip = categoryTooltip;
14 } 14 };
15 15
16 WebInspector.ExtensionTraceProvider.prototype = { 16 WebInspector.ExtensionTraceProvider.prototype = {
17 start: function() 17 start: function()
18 { 18 {
19 WebInspector.extensionServer.startTraceRecording(this._id); 19 WebInspector.extensionServer.startTraceRecording(this._id);
20 }, 20 },
21 21
22 stop: function() 22 stop: function()
23 { 23 {
24 WebInspector.extensionServer.stopTraceRecording(this._id); 24 WebInspector.extensionServer.stopTraceRecording(this._id);
25 } 25 }
26 } 26 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698