-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dotnet] Apply formatting on internal CDP generator (#15049)
- Loading branch information
1 parent
d457c4e
commit 4aee006
Showing
26 changed files
with
155 additions
and
362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 5 additions & 16 deletions
21
third_party/dotnet/devtools/src/generator/CodeGen/CommandInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,14 @@ | ||
namespace OpenQA.Selenium.DevToolsGenerator.CodeGen | ||
namespace OpenQA.Selenium.DevToolsGenerator.CodeGen | ||
{ | ||
/// <summary> | ||
/// Represents information about a Chrome Debugger Protocol command. | ||
/// </summary> | ||
public sealed class CommandInfo | ||
{ | ||
public string CommandName | ||
{ | ||
get; | ||
set; | ||
} | ||
public string CommandName { get; set; } | ||
|
||
public string FullTypeName | ||
{ | ||
get; | ||
set; | ||
} | ||
public string FullResponseTypeName | ||
{ | ||
get; | ||
set; | ||
} | ||
public string FullTypeName { get; set; } | ||
|
||
public string FullResponseTypeName { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 3 additions & 11 deletions
14
third_party/dotnet/devtools/src/generator/CodeGen/EventInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,12 @@ | ||
namespace OpenQA.Selenium.DevToolsGenerator.CodeGen | ||
namespace OpenQA.Selenium.DevToolsGenerator.CodeGen | ||
{ | ||
/// <summary> | ||
/// Represents information about a Chrome Debugger Protocol event. | ||
/// </summary> | ||
public sealed class EventInfo | ||
{ | ||
public string EventName | ||
{ | ||
get; | ||
set; | ||
} | ||
public string EventName { get; set; } | ||
|
||
public string FullTypeName | ||
{ | ||
get; | ||
set; | ||
} | ||
public string FullTypeName { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.