| Index: third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js b/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| index 1a8526d8fe07500c1734acd0ba6a79c024f6e34c..1410bfe8e381ad0b3b500df67ff83bc2c63fda28 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| @@ -537,10 +537,8 @@ Sources.TabbedEditorContainer = class extends Common.Object {
|
| if (Persistence.persistence.hasUnsavedCommittedChanges(uiSourceCode)) {
|
| icon = UI.Icon.create('smallicon-warning');
|
| icon.title = Common.UIString('Changes to this file were not saved to file system.');
|
| - } else if (Runtime.experiments.isEnabled('persistence2') && Persistence.persistence.binding(uiSourceCode)) {
|
| - var binding = Persistence.persistence.binding(uiSourceCode);
|
| - icon = UI.Icon.create('smallicon-green-checkmark');
|
| - icon.title = Persistence.PersistenceUtils.tooltipForUISourceCode(binding.fileSystem);
|
| + } else {
|
| + icon = Persistence.PersistenceUtils.iconForUISourceCode(uiSourceCode);
|
| }
|
| this._tabbedPane.setTabIcon(tabId, icon);
|
| }
|
|
|