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

Side by Side Diff: chromeos/dbus/media_analytics_client.h

Issue 2791983004: DBus MediaAnalyticsClient and media_perception pb. (Closed)
Patch Set: Addressing comments on D-Bus code. Created 3 years, 7 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 2017 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 CHROMEOS_DBUS_MEDIA_ANALYTICS_CLIENT_H_
6 #define CHROMEOS_DBUS_MEDIA_ANALYTICS_CLIENT_H_
7
8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "chromeos/chromeos_export.h"
11 #include "chromeos/dbus/dbus_client.h"
12 #include "chromeos/media_perception/media_perception.pb.h"
13
14 namespace chromeos {
15
16 // MediaAnalyticsClient is used to communicate with a media analytics process
17 // running outside of Chrome.
18 class CHROMEOS_EXPORT MediaAnalyticsClient : public DBusClient {
19 public:
20 // Callback type for a State proto message received from the media analytics
21 // process.
22 using StateCallback =
23 base::Callback<void(bool succeeded, const mri::State& state)>;
24 // Handler type for signal received from media analytics process.
25 using MediaPerceptionSignalHandler =
26 base::Callback<void(const mri::MediaPerception& media_perception)>;
27 // Callback type for a Diagnostics proto message received from the media
28 // analytics process.
29 using DiagnosticsCallback =
30 base::Callback<void(bool succeeded, const mri::Diagnostics& diagnostics)>;
31
32 ~MediaAnalyticsClient() override;
33
34 // API for getting and setting the state of the media analytics process over
35 // D-Bus using a State proto.
36 virtual void State(const mri::State& state,
37 const StateCallback& callback) = 0;
38
39 // Register event handler for the MediaPerception protos received as signal
40 // from the media analytics process.
41 virtual void SetMediaPerceptionSignalHandler(
42 const MediaPerceptionSignalHandler& handler) = 0;
43
44 virtual void UnsetMediaPerceptionSignalHandler() = 0;
45
46 // API for getting diagnostic information from the media analytics process
47 // over D-Bus as a Diagnostics proto message.
48 virtual void GetDiagnostics(const DiagnosticsCallback& callback) = 0;
49
50 // Factory function, creates new instance and returns ownership.
51 // For normal usage, access the singleton via DbusThreadManager::Get().
52 static MediaAnalyticsClient* Create();
53
54 protected:
55 MediaAnalyticsClient();
56
57 private:
58 DISALLOW_COPY_AND_ASSIGN(MediaAnalyticsClient);
59 };
60
61 } // namespace chromeos
62
63 #endif // CHROMEOS_DBUS_MEDIA_ANALYTICS_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698