Index: Source/devtools/front_end/emulation/DevicesSettingsTab.js |
diff --git a/Source/devtools/front_end/emulation/DevicesSettingsTab.js b/Source/devtools/front_end/emulation/DevicesSettingsTab.js |
index ab471eabb959e8f79330539f729d93cdce2d856a..8c894e034efe41d281e227c8a158ceab23c6278c 100644 |
--- a/Source/devtools/front_end/emulation/DevicesSettingsTab.js |
+++ b/Source/devtools/front_end/emulation/DevicesSettingsTab.js |
@@ -96,11 +96,11 @@ WebInspector.DevicesSettingsTab.prototype = { |
item.classList.toggle("device-list-item-show", device.show()); |
if (custom) { |
var editButton = item.createChild("div", "devices-list-edit"); |
- WebInspector.Tooltip.install(editButton, WebInspector.UIString("Edit")); |
+ editButton.title = WebInspector.UIString("Edit"); |
editButton.addEventListener("click", onEditClicked.bind(this), false); |
var removeButton = item.createChild("div", "devices-list-remove"); |
- WebInspector.Tooltip.install(removeButton, WebInspector.UIString("Remove")); |
+ removeButton.title = WebInspector.UIString("Remove"); |
removeButton.addEventListener("click", onRemoveClicked, false); |
} |