Home | History | Annotate | Download | only in front_end

Lines Matching defs:UserMetrics

34 WebInspector.UserMetrics = function()
36 for (var actionName in WebInspector.UserMetrics._ActionCodes) {
37 var actionCode = WebInspector.UserMetrics._ActionCodes[actionName];
38 this[actionName] = new WebInspector.UserMetrics._Recorder(actionCode);
49 WebInspector.settings.domWordWrap.addChangeListener(settingChanged.bind(this, WebInspector.UserMetrics._SettingCodes.ElementsDOMWrapOn, WebInspector.UserMetrics._SettingCodes.ElementsDOMWrapOff));
50 WebInspector.settings.monitoringXHREnabled.addChangeListener(settingChanged.bind(this, WebInspector.UserMetrics._SettingCodes.ConsoleMonitorXHROn, WebInspector.UserMetrics._SettingCodes.ConsoleMonitorXHROff));
51 WebInspector.settings.preserveConsoleLog.addChangeListener(settingChanged.bind(this, WebInspector.UserMetrics._SettingCodes.ConsolePreserveLogOn, WebInspector.UserMetrics._SettingCodes.ConsolePreserveLogOff));
52 WebInspector.settings.resourcesLargeRows.addChangeListener(settingChanged.bind(this, WebInspector.UserMetrics._SettingCodes.NetworkShowLargeRowsOn, WebInspector.UserMetrics._SettingCodes.NetworkShowLargeRowsOff));
59 WebInspector.UserMetrics._ActionCodes = {
70 WebInspector.UserMetrics._SettingCodes = {
81 WebInspector.UserMetrics._PanelCodes = {
92 WebInspector.UserMetrics.UserAction = "UserAction";
94 WebInspector.UserMetrics.UserActionNames = {
108 WebInspector.UserMetrics.prototype = {
111 InspectorFrontendHost.recordPanelShown(WebInspector.UserMetrics._PanelCodes[panelName] || 0);
118 WebInspector.UserMetrics._Recorder = function(actionCode)
123 WebInspector.UserMetrics._Recorder.prototype = {
130 WebInspector.userMetrics = new WebInspector.UserMetrics();