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

Side by Side Diff: services/service_manager/runner/host/host_test_service_main.cc

Issue 2566663004: Revert of Build services as standalone executables (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "mojo/public/cpp/system/message_pipe.h"
6 #include "services/service_manager/public/c/main.h"
7
8 MojoResult ServiceMain(MojoHandle service_request_handle) {
9 mojo::ScopedMessagePipeHandle service_request_pipe;
10 service_request_pipe.reset(mojo::MessagePipeHandle(service_request_handle));
11 return MOJO_RESULT_OK;
12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698