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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js

Issue 2623743002: DevTools: extract modules (non-extensions) (Closed)
Patch Set: rebaseline 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/resources/AppManifestView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
index 4e0749e0363a5a263db8bfc6db3dd16d910ffb91..78f853092f5d751e2f9a983d861050e1675b7923 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
@@ -31,11 +31,11 @@ Resources.AppManifestView = class extends UI.VBox {
this._startURLField = this._presentationSection.appendField(Common.UIString('Start URL'));
var themeColorField = this._presentationSection.appendField(Common.UIString('Theme color'));
- this._themeColorSwatch = UI.ColorSwatch.create();
+ this._themeColorSwatch = InlineEditor.ColorSwatch.create();
themeColorField.appendChild(this._themeColorSwatch);
var backgroundColorField = this._presentationSection.appendField(Common.UIString('Background color'));
- this._backgroundColorSwatch = UI.ColorSwatch.create();
+ this._backgroundColorSwatch = InlineEditor.ColorSwatch.create();
backgroundColorField.appendChild(this._backgroundColorSwatch);
this._orientationField = this._presentationSection.appendField(Common.UIString('Orientation'));

Powered by Google App Engine
This is Rietveld 408576698