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

Side by Side Diff: Source/devtools/front_end/common/Settings.js

Issue 481403002: DevTools: move tracing based Timeline out of experiment (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated inspector/timeline/timeline-coalescing.html Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 this.applyCustomStylesheet = this._createExperiment("applyCustomStylesheet", "Allow custom UI themes"); 292 this.applyCustomStylesheet = this._createExperiment("applyCustomStylesheet", "Allow custom UI themes");
293 this.canvasInspection = this._createExperiment("canvasInspection ", "Canvas inspection"); 293 this.canvasInspection = this._createExperiment("canvasInspection ", "Canvas inspection");
294 this.devicesPanel = this._createExperiment("devicesPanel", "Devices panel"); 294 this.devicesPanel = this._createExperiment("devicesPanel", "Devices panel");
295 this.disableAgentsWhenProfile = this._createExperiment("disableAgentsWhenPro file", "Disable other agents and UI when profiler is active", true); 295 this.disableAgentsWhenProfile = this._createExperiment("disableAgentsWhenPro file", "Disable other agents and UI when profiler is active", true);
296 this.dockToLeft = this._createExperiment("dockToLeft", "Dock to left", true) ; 296 this.dockToLeft = this._createExperiment("dockToLeft", "Dock to left", true) ;
297 this.documentation = this._createExperiment("documentation", "Documentation for JS and CSS", true); 297 this.documentation = this._createExperiment("documentation", "Documentation for JS and CSS", true);
298 this.fileSystemInspection = this._createExperiment("fileSystemInspection", " FileSystem inspection"); 298 this.fileSystemInspection = this._createExperiment("fileSystemInspection", " FileSystem inspection");
299 this.gpuTimeline = this._createExperiment("gpuTimeline", "GPU data on timeli ne", true); 299 this.gpuTimeline = this._createExperiment("gpuTimeline", "GPU data on timeli ne", true);
300 this.layersPanel = this._createExperiment("layersPanel", "Layers panel"); 300 this.layersPanel = this._createExperiment("layersPanel", "Layers panel");
301 this.paintProfiler = this._createExperiment("paintProfiler", "Paint profiler "); 301 this.paintProfiler = this._createExperiment("paintProfiler", "Paint profiler ");
302 this.timelineOnTraceEvents = this._createExperiment("timelineOnTraceEvents", "Timeline on trace events");
303 this.timelinePowerProfiler = this._createExperiment("timelinePowerProfiler", "Timeline power profiler"); 302 this.timelinePowerProfiler = this._createExperiment("timelinePowerProfiler", "Timeline power profiler");
304 this.timelineJSCPUProfile = this._createExperiment("timelineJSCPUProfile", " Timeline with JS sampling"); 303 this.timelineJSCPUProfile = this._createExperiment("timelineJSCPUProfile", " Timeline with JS sampling");
305 304
306 this._cleanUpSetting(); 305 this._cleanUpSetting();
307 } 306 }
308 307
309 WebInspector.ExperimentsSettings.prototype = { 308 WebInspector.ExperimentsSettings.prototype = {
310 /** 309 /**
311 * @return {!Array.<!WebInspector.Experiment>} 310 * @return {!Array.<!WebInspector.Experiment>}
312 */ 311 */
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 758
760 _fireChangedIfNeeded: function() 759 _fireChangedIfNeeded: function()
761 { 760 {
762 var newValue = this._calculateValue(); 761 var newValue = this._calculateValue();
763 if (newValue === this._value) 762 if (newValue === this._value)
764 return; 763 return;
765 this._value = newValue; 764 this._value = newValue;
766 this._eventSupport.dispatchEventToListeners(this._name, this._value); 765 this._eventSupport.dispatchEventToListeners(this._name, this._value);
767 } 766 }
768 } 767 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698