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

Unified Diff: remoting/ios/Chromoting/main.mm

Issue 475333004: Remove old Chromoting iOS client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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: remoting/ios/Chromoting/main.mm
diff --git a/remoting/ios/Chromoting/main.mm b/remoting/ios/Chromoting/main.mm
deleted file mode 100644
index cd068167b287872024aabab0e92a0c935b5b9269..0000000000000000000000000000000000000000
--- a/remoting/ios/Chromoting/main.mm
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2014 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.
-
-#if !defined(__has_feature) || !__has_feature(objc_arc)
-#error "This file requires ARC support."
-#endif
-
-#import <UIKit/UIKit.h>
-
-#include "base/at_exit.h"
-#include "base/command_line.h"
-#include "media/base/yuv_convert.h"
-#include "net/socket/ssl_server_socket.h"
-
-#import "app_delegate.h"
-
-int main(int argc, char* argv[]) {
- // This class is designed to fulfill the dependents needs when it goes out of
- // scope and gets destructed
- base::AtExitManager exitManager;
-
- // Publicize the CommandLine
- CommandLine::Init(argc, argv);
-
-#ifdef DEBUG
- // Set min log level for debug builds. For some reason this has to be
- // negative.
- logging::SetMinLogLevel(-1);
-#endif
-
- // Allows later decoding of video frames.
- media::InitializeCPUSpecificYUVConversions();
-
- // Enable support for SSL server sockets, which must be done as early as
- // possible, preferably before any NSS SSL sockets (client or server) have
- // been created.
- net::EnableSSLServerSockets();
-
- @autoreleasepool {
- return UIApplicationMain(
- argc, argv, nil, NSStringFromClass([AppDelegate class]));
- }
-}
« no previous file with comments | « remoting/ios/Chromoting/en.lproj/InfoPlist.strings ('k') | remoting/ios/Chromoting_unittests/Chromoting_unittests-Info.plist » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698