devtools-protocol 0.0.862770 → 0.0.863986

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.md CHANGED
@@ -1,5 +1,13 @@
1
1
 
2
2
 
3
+ ## Roll protocol to r862770
4
+ ###### _2021-03-15 04:16:04_ | Diff: [c5bd6c3...576a381](https://github.com/ChromeDevTools/devtools-protocol/compare/c5bd6c3...576a381)
5
+ #### `Tracing`: modified command
6
+ * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The parameters's `tracingBackend` _added_.
7
+ #### `Tracing`: new type
8
+ * [`Tracing.TracingBackend`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-TracingBackend)
9
+
10
+
3
11
  ## Roll protocol to r862653
4
12
  ###### _2021-03-12 20:16:21 -0800_ | Diff: [3704a77...c5bd6c3](https://github.com/ChromeDevTools/devtools-protocol/compare/3704a77...c5bd6c3)
5
13
  #### `Network`: modified type
@@ -14539,19 +14539,19 @@
14539
14539
  "returns": [
14540
14540
  {
14541
14541
  "name": "layoutViewport",
14542
- "description": "Deprecated metrics relating to the layout viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `normalisedLayoutViewport` instead.",
14542
+ "description": "Deprecated metrics relating to the layout viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssLayoutViewport` instead.",
14543
14543
  "deprecated": true,
14544
14544
  "$ref": "LayoutViewport"
14545
14545
  },
14546
14546
  {
14547
14547
  "name": "visualViewport",
14548
- "description": "Deprecated metrics relating to the visual viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `normalisedVisualViewport` instead.",
14548
+ "description": "Deprecated metrics relating to the visual viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssVisualViewport` instead.",
14549
14549
  "deprecated": true,
14550
14550
  "$ref": "VisualViewport"
14551
14551
  },
14552
14552
  {
14553
14553
  "name": "contentSize",
14554
- "description": "Deprecated size of scrollable area. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `normalisedContentSize` instead.",
14554
+ "description": "Deprecated size of scrollable area. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssContentSize` instead.",
14555
14555
  "deprecated": true,
14556
14556
  "$ref": "DOM.Rect"
14557
14557
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.862770",
3
+ "version": "0.0.863986",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -6745,11 +6745,11 @@ domain Page
6745
6745
  # Returns metrics relating to the layouting of the page, such as viewport bounds/scale.
6746
6746
  command getLayoutMetrics
6747
6747
  returns
6748
- # Deprecated metrics relating to the layout viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `normalisedLayoutViewport` instead.
6748
+ # Deprecated metrics relating to the layout viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssLayoutViewport` instead.
6749
6749
  deprecated LayoutViewport layoutViewport
6750
- # Deprecated metrics relating to the visual viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `normalisedVisualViewport` instead.
6750
+ # Deprecated metrics relating to the visual viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssVisualViewport` instead.
6751
6751
  deprecated VisualViewport visualViewport
6752
- # Deprecated size of scrollable area. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `normalisedContentSize` instead.
6752
+ # Deprecated size of scrollable area. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssContentSize` instead.
6753
6753
  deprecated DOM.Rect contentSize
6754
6754
  # Metrics relating to the layout viewport in CSS pixels.
6755
6755
  LayoutViewport cssLayoutViewport
@@ -11807,15 +11807,15 @@ export namespace Protocol {
11807
11807
 
11808
11808
  export interface GetLayoutMetricsResponse {
11809
11809
  /**
11810
- * Deprecated metrics relating to the layout viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `normalisedLayoutViewport` instead.
11810
+ * Deprecated metrics relating to the layout viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssLayoutViewport` instead.
11811
11811
  */
11812
11812
  layoutViewport: LayoutViewport;
11813
11813
  /**
11814
- * Deprecated metrics relating to the visual viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `normalisedVisualViewport` instead.
11814
+ * Deprecated metrics relating to the visual viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssVisualViewport` instead.
11815
11815
  */
11816
11816
  visualViewport: VisualViewport;
11817
11817
  /**
11818
- * Deprecated size of scrollable area. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `normalisedContentSize` instead.
11818
+ * Deprecated size of scrollable area. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssContentSize` instead.
11819
11819
  */
11820
11820
  contentSize: DOM.Rect;
11821
11821
  /**