Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5352)

Unified Diff: chrome/installer/mac/app/OmahaCommunication.h

Issue 2203583002: Added unpacking step (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed all comments, rearranged app logic, rewrote test, a bit more error handling Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..40e5da802225faf89d1f084571b6c5c866b4f94f 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
+ onSuccess:(NSArray*)URLs;
+- (void)omahaCommunication:(OmahaCommunication*)messenger
+ onFailure:(NSError*)error;
@end
@interface OmahaCommunication : NSObject<NSURLSessionDataDelegate>

Powered by Google App Engine
This is Rietveld 408576698