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

Unified Diff: third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js

Issue 2776883003: DevTools: normalize medium icons (Closed)
Patch Set: Created 3 years, 9 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/persistence/PersistenceUtils.js
diff --git a/third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js b/third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js
index 79eb624f1ba576f9172601921fd9fea2f365b510..84947698190777bd8b9aa2b23079868426e7ce76 100644
--- a/third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js
@@ -27,13 +27,13 @@ Persistence.PersistenceUtils = class {
return null;
var binding = Persistence.persistence.binding(uiSourceCode);
if (binding) {
- var icon = UI.Icon.create('smallicon-file-sync');
+ var icon = UI.Icon.create('mediumicon-file-sync');
icon.title = Persistence.PersistenceUtils.tooltipForUISourceCode(binding.fileSystem);
return icon;
}
if (uiSourceCode.project().type() !== Workspace.projectTypes.FileSystem)
return null;
- var icon = UI.Icon.create('smallicon-file');
+ var icon = UI.Icon.create('mediumicon-file');
icon.title = Persistence.PersistenceUtils.tooltipForUISourceCode(uiSourceCode);
return icon;
}

Powered by Google App Engine
This is Rietveld 408576698