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

Side by Side Diff: chrome/installer/mac/app/MainDelegate.m

Issue 2148293005: Migrate mac installer to delegate-driven model (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Last patch before CQ Created 4 years, 5 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 unified diff | Download patch
OLDNEW
(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 #import "MainDelegate.h"
6
7 @implementation MainDelegate
8
9 - (void)runApplication {
10 OmahaCommunication* messenger = [[OmahaCommunication alloc] init];
11 messenger.delegate = self;
12
13 [messenger sendRequest];
14 }
15
16 - (void)onOmahaSuccessWithResponseBody:(NSData*)responseBody
17 AndError:(NSError*)error {
18 if (error) {
19 NSLog(@"error: %@", [error localizedDescription]);
20 exit(1);
21 }
22 Downloader* download = [[Downloader alloc] init];
23 download.delegate = self;
24
25 [download downloadChromeImageToDownloadsDirectory:responseBody];
26 }
27
28 - (void)onDownloadSuccess {
29 // TODO: replace the line of code below with real code someday to unpack dmg
30 exit(0);
31 }
32
33 - (void)onUnpackSuccess {
34 }
35
36 @end
OLDNEW
« no previous file with comments | « chrome/installer/mac/app/MainDelegate.h ('k') | chrome/installer/mac/app/NetworkCommunication.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698