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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js

Issue 2593273003: DevTools: Do not reset timeline recoring options on basic/advanced switch. (Closed)
Patch Set: more tests 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
index 80358bbd8b5c63b556c01a938f2051ba4624eb94..d6769e73213c4285bf08aaa157aebc1303441fbd 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
@@ -24,7 +24,7 @@ Timeline.TimelineController = class {
}
/**
- * @param {!Timeline.TimelineController.CaptureOptions} options
+ * @param {!Timeline.TimelineController.RecordingOptions} options
* @param {!Array<!Extensions.ExtensionTraceProvider>} providers
*/
startRecording(options, providers) {
@@ -278,10 +278,11 @@ Timeline.TimelineController = class {
}
};
-/** @typedef {!{
- * enableJSSampling: (boolean|undefined),
- * capturePictures: (boolean|undefined),
- * captureFilmStrip: (boolean|undefined)
- * }}
+/**
+ * @typedef {!{
+ * enableJSSampling: (boolean|undefined),
+ * capturePictures: (boolean|undefined),
+ * captureFilmStrip: (boolean|undefined)
+ * }}
*/
-Timeline.TimelineController.CaptureOptions;
+Timeline.TimelineController.RecordingOptions;

Powered by Google App Engine
This is Rietveld 408576698