Skip to content

Commit da716a7

Browse files
feat: improve platform interface by removing unnecessary abstraction (#233)
Co-authored-by: Ville Välimaa <[email protected]>
1 parent 9301980 commit da716a7

19 files changed

+624
-1294
lines changed

ios/google_navigation_flutter/Sources/google_navigation_flutter/messages.g.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1814,7 +1814,7 @@ protocol NavigationViewCreationApi {
18141814
}
18151815

18161816
/// Generated setup class from Pigeon to handle messages through the `binaryMessenger`.
1817-
enum NavigationViewCreationApiSetup {
1817+
class NavigationViewCreationApiSetup {
18181818
/// The codec used by NavigationViewCreationApi.
18191819
static var codec: FlutterStandardMessageCodec { NavigationViewCreationApiCodec.shared }
18201820
/// Sets up an instance of `NavigationViewCreationApi` to handle messages through the
@@ -2079,7 +2079,7 @@ protocol MapViewApi {
20792079
}
20802080

20812081
/// Generated setup class from Pigeon to handle messages through the `binaryMessenger`.
2082-
enum MapViewApiSetup {
2082+
class MapViewApiSetup {
20832083
/// The codec used by MapViewApi.
20842084
static var codec: FlutterStandardMessageCodec { MapViewApiCodec.shared }
20852085
/// Sets up an instance of `MapViewApi` to handle messages through the `binaryMessenger`.
@@ -4027,7 +4027,7 @@ protocol ImageRegistryApi {
40274027
}
40284028

40294029
/// Generated setup class from Pigeon to handle messages through the `binaryMessenger`.
4030-
enum ImageRegistryApiSetup {
4030+
class ImageRegistryApiSetup {
40314031
/// The codec used by ImageRegistryApi.
40324032
static var codec: FlutterStandardMessageCodec { ImageRegistryApiCodec.shared }
40334033
/// Sets up an instance of `ImageRegistryApi` to handle messages through the `binaryMessenger`.
@@ -4678,7 +4678,7 @@ protocol NavigationSessionApi {
46784678
}
46794679

46804680
/// Generated setup class from Pigeon to handle messages through the `binaryMessenger`.
4681-
enum NavigationSessionApiSetup {
4681+
class NavigationSessionApiSetup {
46824682
/// The codec used by NavigationSessionApi.
46834683
static var codec: FlutterStandardMessageCodec { NavigationSessionApiCodec.shared }
46844684
/// Sets up an instance of `NavigationSessionApi` to handle messages through the
@@ -5917,7 +5917,7 @@ protocol AutoMapViewApi {
59175917
}
59185918

59195919
/// Generated setup class from Pigeon to handle messages through the `binaryMessenger`.
5920-
enum AutoMapViewApiSetup {
5920+
class AutoMapViewApiSetup {
59215921
/// The codec used by AutoMapViewApi.
59225922
static var codec: FlutterStandardMessageCodec { AutoMapViewApiCodec.shared }
59235923
/// Sets up an instance of `AutoMapViewApi` to handle messages through the `binaryMessenger`.
@@ -7645,7 +7645,7 @@ protocol NavigationInspector {
76457645
}
76467646

76477647
/// Generated setup class from Pigeon to handle messages through the `binaryMessenger`.
7648-
enum NavigationInspectorSetup {
7648+
class NavigationInspectorSetup {
76497649
/// The codec used by NavigationInspector.
76507650
/// Sets up an instance of `NavigationInspector` to handle messages through the `binaryMessenger`.
76517651
static func setUp(binaryMessenger: FlutterBinaryMessenger, api: NavigationInspector?) {

0 commit comments

Comments
 (0)