blob: fd72207ad47d4b9b19a6592ba132233aac3adfd4 [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// 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 <UIKit/UIKit.h>
#import "cronet_consumer_app_delegate.h"
int main(int argc, char* argv[]) {
@autoreleasepool {
return UIApplicationMain(
argc, argv, nil, NSStringFromClass([CronetConsumerAppDelegate class]));
}
}