Chromium Code Reviews| Index: chrome/browser/resources/net_internals/main.js |
| diff --git a/chrome/browser/resources/net_internals/main.js b/chrome/browser/resources/net_internals/main.js |
| index 05e9e7b9bac56b43a149f9b5e771fc14542a312c..6bef6a7d8bf7c505fe4e3c9313d475809052ac49 100644 |
| --- a/chrome/browser/resources/net_internals/main.js |
| +++ b/chrome/browser/resources/net_internals/main.js |
| @@ -201,6 +201,7 @@ var MainView = (function() { |
| addTab(BandwidthView); |
| addTab(PrerenderView); |
| addTab(CrosView); |
| + addTab(SdchView); |
|
Randy Smith (Not in Mondays)
2014/09/29 21:21:56
I think this belongs further up in the list, with
baranovich
2014/09/30 13:16:51
Done.
|
| this.tabSwitcher_.showMenuItem(LogsView.TAB_ID, cr.isChromeOS); |
| this.tabSwitcher_.showMenuItem(CrosView.TAB_ID, cr.isChromeOS); |
| @@ -311,6 +312,7 @@ ConstantsObserver.prototype.onReceivedConstants = function(receivedConstants) { |
| QuicRstStreamError = Constants.quicRstStreamError; |
| AddressFamily = Constants.addressFamily; |
| LoadState = Constants.loadState; |
| + SdchProblemCode = Constants.sdchProblemCode; |
| // certStatusFlag may not be present when loading old log Files |
| if (typeof(Constants.certStatusFlag) == 'object') |
| CertStatusFlag = Constants.certStatusFlag; |
| @@ -386,3 +388,15 @@ function addressFamilyToString(family) { |
| // Strip that prefix since it is redundant and only clutters the output. |
| return str.replace(/^ADDRESS_FAMILY_/, ''); |
| } |
| + |
| +/** |
| + * Returns the name for sdchProblemCode. |
| + * |
| + * Example: sdchProblemCodeToString(5) should return |
| + * "DECODE_BODY_ERROR". |
| + * @param {number} sdchProblemCode The SDCH problem code. |
| + * @return {string} The name of the given problem code. |
| + */ |
| +function sdchProblemCodeToString(sdchProblemCode) { |
| + return getKeyWithValue(SdchProblemCode, sdchProblemCode); |
| +} |