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

Unified Diff: third_party/WebKit/Source/devtools/front_end/source_frame/ImageView.js

Issue 1574213006: DevTools: beautified styles sidebar toolbar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed. Created 4 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/source_frame/ImageView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/source_frame/ImageView.js b/third_party/WebKit/Source/devtools/front_end/source_frame/ImageView.js
index 04542bc1681281ed9d41abf03d49b6d596ba46ae..a07ef54e156c67b1c6b28d00f353a180834f54d5 100644
--- a/third_party/WebKit/Source/devtools/front_end/source_frame/ImageView.js
+++ b/third_party/WebKit/Source/devtools/front_end/source_frame/ImageView.js
@@ -41,9 +41,9 @@ WebInspector.ImageView = function(mimeType, contentProvider)
this._parsedURL = new WebInspector.ParsedURL(this._url);
this._mimeType = mimeType;
this._contentProvider = contentProvider;
- this._sizeLabel = new WebInspector.ToolbarLabel();
- this._dimensionsLabel = new WebInspector.ToolbarLabel();
- this._mimeTypeLabel = new WebInspector.ToolbarLabel(mimeType);
+ this._sizeLabel = new WebInspector.ToolbarText();
+ this._dimensionsLabel = new WebInspector.ToolbarText();
+ this._mimeTypeLabel = new WebInspector.ToolbarText(mimeType);
}
WebInspector.ImageView.prototype = {

Powered by Google App Engine
This is Rietveld 408576698