Commit 1ff264e5 authored by Paul Irish's avatar Paul Irish Committed by Commit Bot

DevTools: Add tooltip hint about overrides

Change-Id: If85c60d7f52cdc0a3acc8addf9d7e1995195295b
Reviewed-on: https://chromium-review.googlesource.com/1046106Reviewed-by: default avatarPavel Feldman <pfeldman@chromium.org>
Commit-Queue: Paul Irish <paulirish@chromium.org>
Cr-Commit-Position: refs/heads/master@{#557194}
parent 6a70a9de
...@@ -20,7 +20,7 @@ MobileThrottling.NetworkPanelIndicator = class { ...@@ -20,7 +20,7 @@ MobileThrottling.NetworkPanelIndicator = class {
icon.title = Common.UIString('Network throttling is enabled'); icon.title = Common.UIString('Network throttling is enabled');
} else if (SDK.multitargetNetworkManager.isIntercepting()) { } else if (SDK.multitargetNetworkManager.isIntercepting()) {
icon = UI.Icon.create('smallicon-warning'); icon = UI.Icon.create('smallicon-warning');
icon.title = Common.UIString('Requests may be rewritten'); icon.title = Common.UIString('Requests may be rewritten by local overrides');
} else if (manager.isBlocking()) { } else if (manager.isBlocking()) {
icon = UI.Icon.create('smallicon-warning'); icon = UI.Icon.create('smallicon-warning');
icon.title = Common.UIString('Requests may be blocked'); icon.title = Common.UIString('Requests may be blocked');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment