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

Unified Diff: ios/web/app/web_main.mm

Issue 1149323004: Upstream the iOS web_shell and supporting code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@web-thread-impl
Patch Set: Address review comments Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/ios.gyp ('k') | ios/web/app/web_main_loop.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/app/web_main.mm
diff --git a/ios/web/app/web_main.mm b/ios/web/app/web_main.mm
new file mode 100644
index 0000000000000000000000000000000000000000..5e5aa2b80886790e52deb48302c4fa7716ac3bd6
--- /dev/null
+++ b/ios/web/app/web_main.mm
@@ -0,0 +1,19 @@
+// 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.
+
+#include "ios/web/app/web_main_runner.h"
+#include "ios/web/public/app/web_main.h"
+
+namespace web {
+
+WebMain::WebMain(const WebMainParams& params) {
+ web_main_runner_.reset(WebMainRunner::Create());
+ web_main_runner_->Initialize(params);
+}
+
+WebMain::~WebMain() {
+ web_main_runner_->ShutDown();
+}
+
+} // namespace web
« no previous file with comments | « ios/ios.gyp ('k') | ios/web/app/web_main_loop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698