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

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: Added use of temporary folders, removed semaphore from main installer code, adjusted some files' APIs, resolved remaining comments 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..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>

Powered by Google App Engine
This is Rietveld 408576698