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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/host/UserMetrics.js

Issue 2668583008: DevTools: track Node.js UMA (Closed)
Patch Set: rebaseline test Created 3 years, 10 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 unified diff | Download patch
OLDNEW
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 ConsoleEvaluated: 8, 73 ConsoleEvaluated: 8,
74 FileSavedInWorkspace: 9, 74 FileSavedInWorkspace: 9,
75 DeviceModeEnabled: 10, 75 DeviceModeEnabled: 10,
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,
85 ConnectToNodeJSDirectly: 20,
84 }; 86 };
85 87
86 Host.UserMetrics._PanelCodes = { 88 Host.UserMetrics._PanelCodes = {
87 elements: 1, 89 elements: 1,
88 resources: 2, 90 resources: 2,
89 network: 3, 91 network: 3,
90 sources: 4, 92 sources: 4,
91 timeline: 5, 93 timeline: 5,
92 heap_profiler: 6, 94 heap_profiler: 6,
93 audits: 7, 95 audits: 7,
94 console: 8, 96 console: 8,
95 layers: 9, 97 layers: 9,
96 'drawer-console': 10, 98 'drawer-console': 10,
97 'drawer-animations': 11, 99 'drawer-animations': 11,
98 'drawer-network.config': 12, 100 'drawer-network.config': 12,
99 'drawer-rendering': 13, 101 'drawer-rendering': 13,
100 'drawer-sensors': 14, 102 'drawer-sensors': 14,
101 'drawer-sources.search': 15, 103 'drawer-sources.search': 15,
102 security: 16, 104 security: 16,
103 js_profiler: 17 105 js_profiler: 17
104 }; 106 };
105 107
106 /** @type {!Host.UserMetrics} */ 108 /** @type {!Host.UserMetrics} */
107 Host.userMetrics = new Host.UserMetrics(); 109 Host.userMetrics = new Host.UserMetrics();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698