OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_INSTALLER_MAC_APP_MAINDELEGATE_H_ | |
6 #define CHROME_INSTALLER_MAC_APP_MAINDELEGATE_H_ | |
7 | |
8 #import <Foundation/Foundation.h> | |
9 | |
10 #import "Downloader.h" | |
11 #import "OmahaCommunication.h" | |
12 | |
13 // TODO: move this into the unpacking file when created | |
14 @protocol UnpackDelegate | |
15 - (void)onDownloadSuccess; | |
Sidney San Martín
2016/07/22 02:30:17
This method is already in DownloaderDelegate, an U
| |
16 @end | |
17 | |
18 @interface MainDelegate | |
19 : NSObject<OmahaCommunicationDelegate, DownloaderDelegate, UnpackDelegate> | |
20 - (void)runApplication; | |
21 @end | |
22 | |
23 #endif // CHROME_INSTALLER_MAC_APP_MAINDELEGATE_H_ | |
OLD | NEW |