Chromium Code Reviews| Index: chrome/installer/mac/app/OmahaCommunication.h |
| diff --git a/chrome/installer/mac/app/OmahaCommunication.h b/chrome/installer/mac/app/OmahaCommunication.h |
| index 6b1e9a90abd871e6c4e92f993b51f02613537317..cee2e22952e02775220025634a5db09446546ea2 100644 |
| --- a/chrome/installer/mac/app/OmahaCommunication.h |
| +++ b/chrome/installer/mac/app/OmahaCommunication.h |
| @@ -7,9 +7,12 @@ |
| #import <Foundation/Foundation.h> |
| +@class OmahaCommunication; |
| @protocol OmahaCommunicationDelegate |
| -- (void)onOmahaSuccessWithURLs:(NSArray*)URLs; |
| -- (void)onOmahaFailureWithError:(NSError*)error; |
| +- (void)omahaCommunication:(OmahaCommunication*)messenger |
| + onOmahaSuccessWithURLs:(NSArray*)URLs; |
| +- (void)omahaCommunication:(OmahaCommunication*)messenger |
| + onOmahaFailureWithError:(NSError*)error; |
|
Sidney San Martín
2016/08/13 12:37:18
Since you added `omahaCommunication:` to these nam
Anna Zeng
2016/08/16 23:07:39
Done.
|
| @end |
| @interface OmahaCommunication : NSObject<NSURLSessionDataDelegate> |