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

Side by Side Diff: components/cronet/ios/cronet_consumer/cronet_consumer_view_controller.m

Issue 2807283002: [Cronet] Build static libcronet.a for iOS with complete dependencies. (Closed)
Patch Set: Create cronet_consumer_template and use it for static and regular consumer. Created 3 years, 7 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "cronet_consumer_view_controller.h" 5 #import "cronet_consumer_view_controller.h"
6 6
7 #import <Cronet/Cronet.h> 7 #import "components/cronet/ios/Cronet.h"
8 8
9 @implementation CronetConsumerViewController { 9 @implementation CronetConsumerViewController {
10 UIWebView* _webView; 10 UIWebView* _webView;
11 } 11 }
12 12
13 - (void)viewDidLoad { 13 - (void)viewDidLoad {
14 self.view.backgroundColor = [UIColor whiteColor]; 14 self.view.backgroundColor = [UIColor whiteColor];
15 15
16 UIButton* button = [UIButton buttonWithType:UIButtonTypeSystem]; 16 UIButton* button = [UIButton buttonWithType:UIButtonTypeSystem];
17 [button setTitle:@"chromium.org" forState:UIControlStateNormal]; 17 [button setTitle:@"chromium.org" forState:UIControlStateNormal];
(...skipping 19 matching lines...) Expand all
37 } 37 }
38 38
39 - (void)loadChromium { 39 - (void)loadChromium {
40 [_webView 40 [_webView
41 loadRequest:[NSURLRequest 41 loadRequest:[NSURLRequest
42 requestWithURL: 42 requestWithURL:
43 [NSURL URLWithString:@"https://www.chromium.org"]]]; 43 [NSURL URLWithString:@"https://www.chromium.org"]]];
44 } 44 }
45 45
46 @end 46 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698