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

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

Issue 1760383002: Remove some unneeded directories (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: , Created 4 years, 9 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
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 #ifndef SERVICES_TEST_SERVICE_TEST_SERVICE_IMPL_H_
6 #define SERVICES_TEST_SERVICE_TEST_SERVICE_IMPL_H_
7
8 #include <stdint.h>
9
10 #include "base/memory/scoped_ptr.h"
11 #include "mojo/public/cpp/bindings/strong_binding.h"
12 #include "mojo/public/cpp/system/macros.h"
13 #include "mojo/services/test_service/test_service.mojom.h"
14
15 namespace mojo {
16 class Connector;
17 namespace test {
18
19 class TrackedService;
20 class TestServiceApplication;
21
22 class TestServiceImpl : public TestService {
23 public:
24 TestServiceImpl(Connector* connector,
25 TestServiceApplication* application,
26 InterfaceRequest<TestService> request);
27 ~TestServiceImpl() override;
28
29 // |TestService| methods:
30 void Ping(const mojo::Callback<void()>& callback) override;
31 void ConnectToAppAndGetTime(
32 const mojo::String& app_url,
33 const mojo::Callback<void(int64_t)>& callback) override;
34 void StartTrackingRequests(const mojo::Callback<void()>& callback) override;
35
36 private:
37 TestServiceApplication* const application_;
38 Connector* const connector_;
39 TestTimeServicePtr time_service_;
40 scoped_ptr<TrackedService> tracking_;
41 StrongBinding<TestService> binding_;
42
43 DISALLOW_COPY_AND_ASSIGN(TestServiceImpl);
44 };
45
46 } // namespace test
47 } // namespace mojo
48
49 #endif // SERVICES_TEST_SERVICE_TEST_SERVICE_IMPL_H_
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