| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 AnimationsPlaybackRateChanged: 11, | 76 AnimationsPlaybackRateChanged: 11, |
| 77 RevisionApplied: 12, | 77 RevisionApplied: 12, |
| 78 FileSystemDirectoryContentReceived: 13, | 78 FileSystemDirectoryContentReceived: 13, |
| 79 StyleRuleEdited: 14, | 79 StyleRuleEdited: 14, |
| 80 CommandEvaluatedInConsolePanel: 15, | 80 CommandEvaluatedInConsolePanel: 15, |
| 81 DOMPropertiesExpanded: 16, | 81 DOMPropertiesExpanded: 16, |
| 82 ResizedViewInResponsiveMode: 17, | 82 ResizedViewInResponsiveMode: 17, |
| 83 TimelinePageReloadStarted: 18, | 83 TimelinePageReloadStarted: 18, |
| 84 ConnectToNodeJSFromFrontend: 19, | 84 ConnectToNodeJSFromFrontend: 19, |
| 85 ConnectToNodeJSDirectly: 20, | 85 ConnectToNodeJSDirectly: 20, |
| 86 CpuThrottlingEnabled: 21, |
| 86 }; | 87 }; |
| 87 | 88 |
| 88 Host.UserMetrics._PanelCodes = { | 89 Host.UserMetrics._PanelCodes = { |
| 89 elements: 1, | 90 elements: 1, |
| 90 resources: 2, | 91 resources: 2, |
| 91 network: 3, | 92 network: 3, |
| 92 sources: 4, | 93 sources: 4, |
| 93 timeline: 5, | 94 timeline: 5, |
| 94 heap_profiler: 6, | 95 heap_profiler: 6, |
| 95 audits: 7, | 96 audits: 7, |
| 96 console: 8, | 97 console: 8, |
| 97 layers: 9, | 98 layers: 9, |
| 98 'drawer-console': 10, | 99 'drawer-console': 10, |
| 99 'drawer-animations': 11, | 100 'drawer-animations': 11, |
| 100 'drawer-network.config': 12, | 101 'drawer-network.config': 12, |
| 101 'drawer-rendering': 13, | 102 'drawer-rendering': 13, |
| 102 'drawer-sensors': 14, | 103 'drawer-sensors': 14, |
| 103 'drawer-sources.search': 15, | 104 'drawer-sources.search': 15, |
| 104 security: 16, | 105 security: 16, |
| 105 js_profiler: 17 | 106 js_profiler: 17 |
| 106 }; | 107 }; |
| 107 | 108 |
| 108 /** @type {!Host.UserMetrics} */ | 109 /** @type {!Host.UserMetrics} */ |
| 109 Host.userMetrics = new Host.UserMetrics(); | 110 Host.userMetrics = new Host.UserMetrics(); |
| OLD | NEW |