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

Unified Diff: Source/devtools/front_end/components/NetworkConditionsSelector.js

Issue 1262063003: Devtools UI: Remove redundant tooltips (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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: Source/devtools/front_end/components/NetworkConditionsSelector.js
diff --git a/Source/devtools/front_end/components/NetworkConditionsSelector.js b/Source/devtools/front_end/components/NetworkConditionsSelector.js
index 696f4a21d6faa74167adbc8754cdf3a657d07cd2..70f1fc156d7761186fe68edb61bc8d367899b140 100644
--- a/Source/devtools/front_end/components/NetworkConditionsSelector.js
+++ b/Source/devtools/front_end/components/NetworkConditionsSelector.js
@@ -45,7 +45,6 @@ WebInspector.NetworkConditionsSelector.prototype = {
var throughputText = (throughputInKbps < 1024) ? WebInspector.UIString("%d Kbps", throughputInKbps) : WebInspector.UIString("%d Mbps", (throughputInKbps / 1024) | 0);
var title = WebInspector.UIString("%s (%s %dms RTT)", preset.title, throughputText, preset.value.latency);
option = new Option(title, preset.title);
- option.title = WebInspector.UIString("Maximum download throughput: %s.\r\nMinimum round-trip time: %dms.", throughputText, preset.value.latency);
paulirish 2015/08/03 16:26:20 http://i.imgur.com/zCPwEXx.png "RTT" is somethin
samli 2015/08/05 07:53:30 This must be platform specific, I can't see that o
}
option.settingValue = preset.value;
this._selectElement.appendChild(option);

Powered by Google App Engine
This is Rietveld 408576698