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

Unified Diff: chrome/installer/mac/app/main.m

Issue 2094583004: Initial commit for Chrome metainstaller on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Additional progress addressing downloader and parser, moved BUILD dependencies away from root. Created 4 years, 6 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/main.m
diff --git a/chrome/installer/mac/app/main.m b/chrome/installer/mac/app/main.m
new file mode 100644
index 0000000000000000000000000000000000000000..3be9570efb6b1116d47fa2a2cc888a7d3d1aa82d
--- /dev/null
+++ b/chrome/installer/mac/app/main.m
@@ -0,0 +1,22 @@
+// Copyright (c) 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import <Foundation/Foundation.h>
+#import "downloader.h"
+#import "request.h"
+#import "systemInfo.h"
+
+int main(){
+ NSXMLDocument *requestBody = createXMLRequestBody([SystemInfo getOSVersion],
+ [SystemInfo getArch]);
+ NSURLRequest *request = createOmahaRequest(requestBody);
+ NSData *result = sendRequestAndReceiveResponse(request);
+
+ Downloader *download = [[Downloader alloc] init];
+ [download downloadChromeImageToDownloadsDirectory: result];
+
+ // NSURL *chromeURL = getChromeImageURL(result);
+ // NSData *chromeImageData = downloadChromeAsData(chromeURL);
+ // writeChromeImageToDownloadsDirectory(chromeImageData);
+}

Powered by Google App Engine
This is Rietveld 408576698