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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js

Issue 2608043002: DevTools: extract modules (with extensions) (Closed)
Patch Set: refactor py Created 3 years, 11 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/sources/AddSourceMapURLDialog.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js b/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
index 36cb16c664d52c31e8ed1381debc1615a7a9d930..6b683ad0bd626685c71c94c9503606ec64338c20 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
@@ -10,7 +10,7 @@ Sources.AddSourceMapURLDialog = class extends UI.HBox {
*/
constructor(callback) {
super(true);
- this.registerRequiredCSS('ui_lazy/dialog.css');
+ this.registerRequiredCSS('sources/dialog.css');
pfeldman 2017/01/09 19:29:48 It should rather be in ui/
chenwilliam 2017/01/09 22:49:15 I've reverted my change to ui_lazy/dialog.css in m
this.contentElement.createChild('label').textContent = Common.UIString('Source map URL: ');
this._input = this.contentElement.createChild('input');

Powered by Google App Engine
This is Rietveld 408576698