Skip to content

Commit

Permalink
Update to Chrome DevTools Protocol version 0.0.860415
Browse files Browse the repository at this point in the history
  • Loading branch information
Protocol Update Workflow authored and joffrey-bion committed Mar 6, 2021
1 parent 7b0a0a9 commit f090374
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 8 deletions.
14 changes: 10 additions & 4 deletions api/chrome-devtools-kotlin.api
Original file line number Diff line number Diff line change
Expand Up @@ -24247,15 +24247,21 @@ public final class org/hildan/chrome/devtools/domains/page/GetInstallabilityErro

public final class org/hildan/chrome/devtools/domains/page/GetLayoutMetricsResponse {
public static final field Companion Lorg/hildan/chrome/devtools/domains/page/GetLayoutMetricsResponse$Companion;
public synthetic fun <init> (ILorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;Lkotlinx/serialization/internal/SerializationConstructorMarker;)V
public fun <init> (Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;)V
public synthetic fun <init> (ILorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;Lkotlinx/serialization/internal/SerializationConstructorMarker;)V
public fun <init> (Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;)V
public final fun component1 ()Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;
public final fun component2 ()Lorg/hildan/chrome/devtools/domains/page/VisualViewport;
public final fun component3 ()Lorg/hildan/chrome/devtools/domains/dom/Rect;
public final fun copy (Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;)Lorg/hildan/chrome/devtools/domains/page/GetLayoutMetricsResponse;
public static synthetic fun copy$default (Lorg/hildan/chrome/devtools/domains/page/GetLayoutMetricsResponse;Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;ILjava/lang/Object;)Lorg/hildan/chrome/devtools/domains/page/GetLayoutMetricsResponse;
public final fun component4 ()Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;
public final fun component5 ()Lorg/hildan/chrome/devtools/domains/page/VisualViewport;
public final fun component6 ()Lorg/hildan/chrome/devtools/domains/dom/Rect;
public final fun copy (Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;)Lorg/hildan/chrome/devtools/domains/page/GetLayoutMetricsResponse;
public static synthetic fun copy$default (Lorg/hildan/chrome/devtools/domains/page/GetLayoutMetricsResponse;Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;Lorg/hildan/chrome/devtools/domains/page/VisualViewport;Lorg/hildan/chrome/devtools/domains/dom/Rect;ILjava/lang/Object;)Lorg/hildan/chrome/devtools/domains/page/GetLayoutMetricsResponse;
public fun equals (Ljava/lang/Object;)Z
public final fun getContentSize ()Lorg/hildan/chrome/devtools/domains/dom/Rect;
public final fun getCssContentSize ()Lorg/hildan/chrome/devtools/domains/dom/Rect;
public final fun getCssLayoutViewport ()Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;
public final fun getCssVisualViewport ()Lorg/hildan/chrome/devtools/domains/page/VisualViewport;
public final fun getLayoutViewport ()Lorg/hildan/chrome/devtools/domains/page/LayoutViewport;
public final fun getVisualViewport ()Lorg/hildan/chrome/devtools/domains/page/VisualViewport;
public fun hashCode ()I
Expand Down
24 changes: 21 additions & 3 deletions protocol/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -14539,17 +14539,35 @@
"returns": [
{
"name": "layoutViewport",
"description": "Metrics relating to the layout viewport.",
"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.",
"deprecated": true,
"$ref": "LayoutViewport"
},
{
"name": "visualViewport",
"description": "Metrics relating to the visual viewport.",
"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.",
"deprecated": true,
"$ref": "VisualViewport"
},
{
"name": "contentSize",
"description": "Size of scrollable area.",
"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.",
"deprecated": true,
"$ref": "DOM.Rect"
},
{
"name": "cssLayoutViewport",
"description": "Metrics relating to the layout viewport in CSS pixels.",
"$ref": "LayoutViewport"
},
{
"name": "cssVisualViewport",
"description": "Metrics relating to the visual viewport in CSS pixels.",
"$ref": "VisualViewport"
},
{
"name": "cssContentSize",
"description": "Size of scrollable area in CSS pixels.",
"$ref": "DOM.Rect"
}
]
Expand Down
2 changes: 1 addition & 1 deletion protocol/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.859327
0.0.860415

0 comments on commit f090374

Please sign in to comment.