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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/ResourceUtils.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/bindings/ResourceUtils.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/ResourceUtils.js b/third_party/WebKit/Source/devtools/front_end/bindings/ResourceUtils.js
index e9f7dbcf5c9c3126341a721eb08a8faf013e500f..6c239867e922fa3b0178a7263a2223a5c3df8959 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/ResourceUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/ResourceUtils.js
@@ -41,7 +41,7 @@ WebInspector.resourceForURL = function(url)
return resource;
}
return null;
-}
+};
/**
* @param {function(!WebInspector.Resource)} callback
@@ -51,7 +51,7 @@ WebInspector.forAllResources = function(callback)
var targets = WebInspector.targetManager.targets(WebInspector.Target.Capability.DOM);
for (var i = 0; i < targets.length; ++i)
WebInspector.ResourceTreeModel.fromTarget(targets[i]).forAllResources(callback);
-}
+};
/**
* @param {string} url
@@ -89,4 +89,4 @@ WebInspector.displayNameForURL = function(url)
var displayName = url.trimURL(parsedURL.host);
return displayName === "/" ? parsedURL.host + "/" : displayName;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698