Skip to content

Commit e112e4b

Browse files
generatedunixname899737299318490meta-codesync[bot]
authored andcommitted
Fix CQS signal facebook-unused-include-check in xplat/graphics/igl/public
Reviewed By: Daniel9z Differential Revision: D94491939 fbshipit-source-id: 9166b5cbd65b27438258ed4ba3d1a04f6583f52a
1 parent da88994 commit e112e4b

4 files changed

Lines changed: 12 additions & 4 deletions

File tree

shell/ios/AppDelegate.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77

88
// @fb-only
99

10-
#import <UIKit/UIKit.h>
10+
#import <UIKit/UIApplication.h> // IWYU pragma: export
11+
#import <UIKit/UIResponder.h> // IWYU pragma: export
12+
#import <UIKit/UITabBarController.h> // IWYU pragma: export
13+
#import <UIKit/UIWindow.h> // IWYU pragma: export
1114

1215
@interface AppDelegate : UIResponder <UIApplicationDelegate, UITabBarControllerDelegate>
1316

shell/ios/main.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
#import "AppDelegate.h"
1111

12+
#import <Foundation/NSObjCRuntime.h>
1213
#import <UIKit/UIApplication.h>
13-
#import <UIKit/UIResponder.h>
1414
#import <shell/shared/platform/Platform.h>
1515

1616
int main(int argc, char* argv[]) {

shell/mac/HeadlessView.mm

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@
1111

1212
#import "ViewController.h"
1313

14-
#import <Foundation/Foundation.h> // IWYU pragma: keep
14+
#import <AppKit/NSApplication.h>
15+
#import <AppKit/NSTabViewController.h>
16+
#import <AppKit/NSTabViewItem.h>
17+
#import <AppKit/NSTrackingArea.h>
18+
#import <AppKit/NSWindow.h>
19+
#import <CoreVideo/CVDisplayLink.h>
1520

1621
@interface HeadlessView () {
1722
CVDisplayLinkRef _displayLink; // display link for managing rendering thread

shell/mac/VulkanView.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#import "VulkanView.h"
1111

1212
#import "AppDelegate.h"
13-
#import "ViewController.h"
13+
#import "ViewController.h" // IWYU pragma: keep
1414

1515
#import <Foundation/Foundation.h>
1616

0 commit comments

Comments
 (0)