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

Side by Side Diff: mojo/services/test_service/test_service_impl.h

Issue 314293002: Mojo: Add a trivial end-to-end (in-process) test of Mojo shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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/application/application.h"
6 #include "mojo/public/cpp/system/macros.h"
7 #include "mojo/services/test_service/test_service.mojom.h"
8
9 namespace mojo {
10 namespace test {
11
12 class TestServiceImpl : public InterfaceImpl<ITestService> {
13 public:
14 TestServiceImpl();
15 virtual ~TestServiceImpl();
16
17 // |ITestService| methods:
18 virtual void Ping(const mojo::Callback<void()>& callback) MOJO_OVERRIDE;
19
20 private:
21 MOJO_DISALLOW_COPY_AND_ASSIGN(TestServiceImpl);
22 };
23
24 } // namespace test
25 } // namespace mojo
26
OLDNEW
« no previous file with comments | « mojo/services/test_service/test_service_application.cc ('k') | mojo/services/test_service/test_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698