Skip to content

Commit 04f1e8b

Browse files
committed
Flatten the structure
1 parent 2a070ca commit 04f1e8b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

packages/camera/camera_avfoundation/ios/camera_avfoundation/Sources/camera_avfoundation/FLTCam.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
@import Flutter;
1010
#import <libkern/OSAtomic.h>
1111

12+
#import "./include/camera_avfoundation/FLTCaptureDeviceControlling.h"
13+
#import "./include/camera_avfoundation/FLTDeviceOrientationProviding.h"
1214
#import "./include/camera_avfoundation/FLTSavePhotoDelegate.h"
1315
#import "./include/camera_avfoundation/FLTThreadSafeEventChannel.h"
14-
#import "./include/camera_avfoundation/Protocols/FLTCaptureDeviceControlling.h"
15-
#import "./include/camera_avfoundation/Protocols/FLTDeviceOrientationProviding.h"
1616
#import "./include/camera_avfoundation/QueueUtils.h"
1717
#import "./include/camera_avfoundation/messages.g.h"
1818

packages/camera/camera_avfoundation/ios/camera_avfoundation/Sources/camera_avfoundation/FLTCamMediaSettingsAVWrapper.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// found in the LICENSE file.
44

55
#import "./include/camera_avfoundation/FLTCamMediaSettingsAVWrapper.h"
6-
#import "./include/camera_avfoundation/Protocols/FLTCaptureDeviceControlling.h"
6+
#import "./include/camera_avfoundation/FLTCaptureDeviceControlling.h"
77

88
@implementation FLTCamMediaSettingsAVWrapper
99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#import "../include/camera_avfoundation/Protocols/FLTCaptureDeviceControlling.h"
5+
#import "./include/camera_avfoundation/FLTCaptureDeviceControlling.h"
66

77
@interface FLTDefaultCaptureDeviceController ()
88
@property(nonatomic, strong) AVCaptureDevice *device;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
#import "../include/camera_avfoundation/Protocols/FLTDeviceOrientationProviding.h"
5+
#import "./include/camera_avfoundation/FLTDeviceOrientationProviding.h"
66

77
@implementation FLTDefaultDeviceOrientationProvider
88

packages/camera/camera_avfoundation/ios/camera_avfoundation/Sources/camera_avfoundation/include/CameraPlugin.modulemap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ framework module camera_avfoundation {
55
module * { export * }
66

77
explicit module Test {
8-
header "Protocols/FLTCaptureDeviceControlling.h"
9-
header "Protocols/FLTDeviceOrientationProviding.h"
8+
header "FLTCaptureDeviceControlling.h"
9+
header "FLTDeviceOrientationProviding.h"
1010
header "FLTPermissionServicing.h"
1111
header "CameraPlugin_Test.h"
1212
header "CameraProperties.h"

0 commit comments

Comments
 (0)