Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Fix includes to start with shell #22227

Merged
merged 1 commit into from
Oct 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// found in the LICENSE file.

#import "flutter/shell/platform/darwin/ios/framework/Headers/FlutterEngine.h"
#include "shell/platform/darwin/ios/rendering_api_selection.h"
#import "flutter/shell/platform/darwin/ios/rendering_api_selection.h"

@class FlutterBinaryMessengerRelay;

Expand Down
2 changes: 1 addition & 1 deletion shell/platform/darwin/ios/ios_surface_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

#include <memory>

#import "flutter/shell/platform/darwin/ios/ios_external_view_embedder.h"
#import "flutter/shell/platform/darwin/ios/ios_surface.h"
#import "flutter/shell/platform/darwin/ios/rendering_api_selection.h"
#include "shell/platform/darwin/ios/ios_external_view_embedder.h"

namespace flutter {

Expand Down
3 changes: 2 additions & 1 deletion shell/platform/darwin/ios/ios_surface_factory.mm
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
// found in the LICENSE file.

#import "flutter/shell/platform/darwin/ios/ios_surface_factory.h"

#import "flutter/shell/platform/darwin/ios/ios_context.h"
#include "shell/platform/darwin/ios/ios_external_view_embedder.h"
#import "flutter/shell/platform/darwin/ios/ios_external_view_embedder.h"

namespace flutter {

Expand Down