| Index: components/core_services/main.cc
|
| diff --git a/components/kiosk_wm/main.cc b/components/core_services/main.cc
|
| similarity index 56%
|
| copy from components/kiosk_wm/main.cc
|
| copy to components/core_services/main.cc
|
| index 07c19dbc6819fb4a52a3b714dee703aa46a85dda..1f664c870933e346a43a02c207b0fd01420a5485 100644
|
| --- a/components/kiosk_wm/main.cc
|
| +++ b/components/core_services/main.cc
|
| @@ -1,13 +1,13 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Copyright 2015 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 "components/kiosk_wm/kiosk_wm.h"
|
| -
|
| +#include "components/core_services/core_services_application_delegate.h"
|
| #include "mojo/application/application_runner_chromium.h"
|
| #include "third_party/mojo/src/mojo/public/c/system/main.h"
|
|
|
| MojoResult MojoMain(MojoHandle shell_handle) {
|
| - mojo::ApplicationRunnerChromium runner(new kiosk_wm::KioskWM);
|
| + mojo::ApplicationRunnerChromium runner(
|
| + new core_services::CoreServicesApplicationDelegate);
|
| return runner.Run(shell_handle);
|
| }
|
|
|