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

Unified Diff: components/core_services/main.cc

Issue 1084463003: Start building core_services.mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add OWNERS files for directories. Created 5 years, 8 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: 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);
}
« no previous file with comments | « components/core_services/core_services_application_delegate.cc ('k') | components/html_viewer/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698