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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/NetworkLog.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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: third_party/WebKit/Source/devtools/front_end/sdk/NetworkLog.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/NetworkLog.js b/third_party/WebKit/Source/devtools/front_end/sdk/NetworkLog.js
index 1406651344d4447bd5668974a242e1d06224ce03..098cd0c69d196e777bef62957fa4293ca077ed07 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/NetworkLog.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/NetworkLog.js
@@ -45,7 +45,7 @@ WebInspector.NetworkLog = function(target, resourceTreeModel, networkManager)
resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.Events.MainFrameNavigated, this._onMainFrameNavigated, this);
resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.Events.Load, this._onLoad, this);
resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.Events.DOMContentLoaded, this._onDOMContentLoaded, this);
-}
+};
/**
* @param {!WebInspector.Target} target
@@ -54,7 +54,7 @@ WebInspector.NetworkLog = function(target, resourceTreeModel, networkManager)
WebInspector.NetworkLog.fromTarget = function(target)
{
return /** @type {?WebInspector.NetworkLog} */ (target.model(WebInspector.NetworkLog));
-}
+};
/**
* @param {string} url
@@ -69,7 +69,7 @@ WebInspector.NetworkLog.requestForURL = function(url)
return result;
}
return null;
-}
+};
/**
* @return {!Array.<!WebInspector.NetworkRequest>}
@@ -83,7 +83,7 @@ WebInspector.NetworkLog.requests = function()
result = result.concat(networkLog.requests());
}
return result;
-}
+};
WebInspector.NetworkLog.prototype = {
/**
@@ -177,7 +177,7 @@ WebInspector.NetworkLog.prototype = {
},
__proto__: WebInspector.SDKModel.prototype
-}
+};
/**
* @constructor
@@ -188,6 +188,6 @@ WebInspector.PageLoad = function(mainRequest)
this.id = ++WebInspector.PageLoad._lastIdentifier;
this.url = mainRequest.url;
this.startTime = mainRequest.startTime;
-}
+};
WebInspector.PageLoad._lastIdentifier = 0;

Powered by Google App Engine
This is Rietveld 408576698