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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js

Issue 2515763003: DevTools: use shorthand syntax in interface definitions. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js b/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
index 46387b302ac181ac67e1b60beabaf3882308c136..8a4b5259434ed8b93f4f40b540fe3c995bb5e95c 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
@@ -117,7 +117,8 @@ Bindings.CompilerScriptMapping = class {
var script = rawLocation.script();
if (!script)
return null;
- var uiSourceCode = Bindings.NetworkProject.uiSourceCodeForScriptURL(this._workspace, /** @type {string} */ (entry.sourceURL), script);
+ var uiSourceCode = Bindings.NetworkProject.uiSourceCodeForScriptURL(
+ this._workspace, /** @type {string} */ (entry.sourceURL), script);
if (!uiSourceCode)
return null;
return uiSourceCode.uiLocation(

Powered by Google App Engine
This is Rietveld 408576698