summaryrefslogtreecommitdiffstats
path: root/ios/web/app/web_main.mm
diff options
context:
space:
mode:
Diffstat (limited to 'ios/web/app/web_main.mm')
-rw-r--r--ios/web/app/web_main.mm19
1 files changed, 19 insertions, 0 deletions
diff --git a/ios/web/app/web_main.mm b/ios/web/app/web_main.mm
new file mode 100644
index 0000000..5e5aa2b
--- /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