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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/main/Main.js

Issue 2526013002: [DevTools] Added inline breakpoints (Closed)
Patch Set: rebased test Created 4 years 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) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). 3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com).
4 * Copyright (C) 2009 Joseph Pecoraro 4 * Copyright (C) 2009 Joseph Pecoraro
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 Runtime.experiments.register('layoutEditor', 'Layout editor', true); 104 Runtime.experiments.register('layoutEditor', 'Layout editor', true);
105 Runtime.experiments.register('inspectTooltip', 'Dark inspect element tooltip '); 105 Runtime.experiments.register('inspectTooltip', 'Dark inspect element tooltip ');
106 Runtime.experiments.register('liveSASS', 'Live SASS'); 106 Runtime.experiments.register('liveSASS', 'Live SASS');
107 Runtime.experiments.register('nodeDebugging', 'Node debugging', true); 107 Runtime.experiments.register('nodeDebugging', 'Node debugging', true);
108 Runtime.experiments.register('persistence2', 'Persistence 2.0'); 108 Runtime.experiments.register('persistence2', 'Persistence 2.0');
109 Runtime.experiments.register('privateScriptInspection', 'Private script insp ection'); 109 Runtime.experiments.register('privateScriptInspection', 'Private script insp ection');
110 Runtime.experiments.register('requestBlocking', 'Request blocking', true); 110 Runtime.experiments.register('requestBlocking', 'Request blocking', true);
111 Runtime.experiments.register('resolveVariableNames', 'Resolve variable names '); 111 Runtime.experiments.register('resolveVariableNames', 'Resolve variable names ');
112 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti meline', true); 112 Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Ti meline', true);
113 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes on Timeline', true); 113 Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes on Timeline', true);
114 Runtime.experiments.register('inlineBreakpoints', 'Show inline breakpoints') ;
114 Runtime.experiments.register('securityPanel', 'Security panel'); 115 Runtime.experiments.register('securityPanel', 'Security panel');
115 Runtime.experiments.register('sourceDiff', 'Source diff'); 116 Runtime.experiments.register('sourceDiff', 'Source diff');
116 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true) ; 117 Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true) ;
117 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval idation tracking', true); 118 Runtime.experiments.register('timelineInvalidationTracking', 'Timeline inval idation tracking', true);
118 Runtime.experiments.register('timelineRecordingPerspectives', 'Timeline reco rding perspectives UI'); 119 Runtime.experiments.register('timelineRecordingPerspectives', 'Timeline reco rding perspectives UI');
119 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b ased JS profiler', true); 120 Runtime.experiments.register('timelineTracingJSProfile', 'Timeline tracing b ased JS profiler', true);
120 Runtime.experiments.register('timelineV8RuntimeCallStats', 'V8 Runtime Call Stats on Timeline', true); 121 Runtime.experiments.register('timelineV8RuntimeCallStats', 'V8 Runtime Call Stats on Timeline', true);
121 Runtime.experiments.register('timelineRuleUsageRecording', 'Track CSS rules usage while recording Timeline.'); 122 Runtime.experiments.register('timelineRuleUsageRecording', 'Track CSS rules usage while recording Timeline.');
122 Runtime.experiments.register('timelinePerFrameTrack', 'Show track per frame on Timeline', true); 123 Runtime.experiments.register('timelinePerFrameTrack', 'Show track per frame on Timeline', true);
123 124
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 * @override 983 * @override
983 * @return {?Element} 984 * @return {?Element}
984 */ 985 */
985 settingElement() { 986 settingElement() {
986 return UI.SettingsUI.createSettingCheckbox( 987 return UI.SettingsUI.createSettingCheckbox(
987 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' )); 988 Common.UIString('Show rulers'), Common.moduleSetting('showMetricsRulers' ));
988 } 989 }
989 }; 990 };
990 991
991 new Main.Main(); 992 new Main.Main();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698