Skip to content

Commit 1c59aa7

Browse files
Clean up IWYU warnings for eDO code base.
PiperOrigin-RevId: 362428379
1 parent 5ddded8 commit 1c59aa7

35 files changed

Lines changed: 57 additions & 32 deletions

Channel/Sources/EDOChannelForwarder.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
#import "Channel/Sources/EDOChannelForwarder.h"
1818

19-
#import "Channel/Sources/EDOChannelPool.h"
19+
#import "Channel/Sources/EDOChannel.h"
20+
#import "Channel/Sources/EDOChannelErrors.h"
2021
#import "Channel/Sources/EDOHostPort.h"
21-
#import "Channel/Sources/EDOSocketChannel.h"
2222

2323
/**
2424
* Creates a receiveHandler for the multiplexer to receive the data and forwards to the forwarded

Channel/Sources/EDOChannelMultiplexer.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#import "Channel/Sources/EDOChannelMultiplexer.h"
1818

1919
#import "Channel/Sources/EDOBlockingQueue.h"
20+
#import "Channel/Sources/EDOChannel.h"
2021
#import "Channel/Sources/EDOHostPort.h"
2122
#import "Channel/Sources/EDOSocket.h"
2223
#import "Channel/Sources/EDOSocketChannel.h"

Channel/Sources/EDOChannelPool.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#import "Channel/Sources/EDOChannelPool.h"
1818

1919
#import "Channel/Sources/EDOBlockingQueue.h"
20+
#import "Channel/Sources/EDOChannel.h"
2021
#import "Channel/Sources/EDOChannelErrors.h"
2122
#import "Channel/Sources/EDOHostPort.h"
2223
#import "Channel/Sources/EDOSocket.h"

Channel/Sources/EDOListenSocket.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <stdatomic.h>
2323
#include <sys/un.h>
2424

25-
#import "Channel/Sources/EDOSocketPort.h"
25+
#import "Channel/Sources/EDOSocket.h"
2626

2727
static char const *gListenSocketQueueLabel = "com.google.edo.socketListen";
2828

Channel/Sources/EDOSocketChannel.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@
2121
#include <netinet/tcp.h>
2222
#include <sys/un.h>
2323

24+
#import "Channel/Sources/EDOChannel.h"
2425
#import "Channel/Sources/EDOChannelUtil.h"
25-
#import "Channel/Sources/EDOHostPort.h"
2626
#import "Channel/Sources/EDOSocket.h"
27-
#import "Channel/Sources/EDOSocketPort.h"
2827

2928
#pragma mark - Socket Connection Extension
3029

Channel/Tests/EDOChannelForwarderTest.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
#import <XCTest/XCTest.h>
1818

19+
#import "Channel/Sources/EDOChannel.h"
20+
#import "Channel/Sources/EDOChannelErrors.h"
1921
#import "Channel/Sources/EDOChannelForwarder.h"
2022
#import "Channel/Sources/EDOChannelMultiplexer.h"
2123
#import "Channel/Sources/EDOHostPort.h"

Channel/Tests/EDOChannelMultiplexerTest.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
#import <XCTest/XCTest.h>
1818

19+
#import "Channel/Sources/EDOChannel.h"
1920
#import "Channel/Sources/EDOChannelMultiplexer.h"
2021
#import "Channel/Sources/EDOHostPort.h"
2122
#import "Channel/Sources/EDOSocket.h"

Channel/Tests/EDOChannelPoolTest.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
#import <XCTest/XCTest.h>
1818

19+
#import "Channel/Sources/EDOChannel.h"
1920
#import "Channel/Sources/EDOChannelPool.h"
2021
#import "Channel/Sources/EDOHostPort.h"
2122
#import "Channel/Sources/EDOSocket.h"

Channel/Tests/EDOSocketChannelTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#import <XCTest/XCTest.h>
1818

19-
#import "Channel/Sources/EDOHostPort.h"
19+
#import "Channel/Sources/EDOChannel.h"
2020
#import "Channel/Sources/EDOSocket.h"
2121
#import "Channel/Sources/EDOSocketChannel.h"
2222
#import "Channel/Sources/EDOSocketPort.h"

DeviceForwarder/Sources/EDODeviceForwardersManager.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
#import "DeviceForwarder/Sources/EDODeviceForwardersManager.h"
1818

19+
#import "Channel/Sources/EDOChannelErrors.h"
1920
#import "Channel/Sources/EDOChannelForwarder.h"
2021
#import "Channel/Sources/EDOHostPort.h"
2122
#import "Channel/Sources/EDOSocket.h"

0 commit comments

Comments
 (0)