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

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

Issue 2791983004: DBus MediaAnalyticsClient and media_perception pb. (Closed)
Patch Set: Fake client has custom method for firing media perception event. 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 // APIs for getting and setting the state of the media analytics process over
35 // D-Bus using a State proto.
36 virtual void GetState(const StateCallback& callback) = 0;
37 virtual void SetState(const mri::State& state,
tbarzic 2017/05/10 03:26:25 document that state status has to be set.
Luke Sorenson 2017/05/10 16:38:22 Done.
38 const StateCallback& callback) = 0;
39
40 // Register event handler for the MediaPerception protos received as signal
41 // from the media analytics process.
42 virtual void SetMediaPerceptionSignalHandler(
43 const MediaPerceptionSignalHandler& handler) = 0;
44
45 virtual void ClearMediaPerceptionSignalHandler() = 0;
46
47 // API for getting diagnostic information from the media analytics process
48 // over D-Bus as a Diagnostics proto message.
49 virtual void GetDiagnostics(const DiagnosticsCallback& callback) = 0;
50
51 // Factory function, creates new instance and returns ownership.
52 // For normal usage, access the singleton via DbusThreadManager::Get().
53 static MediaAnalyticsClient* Create();
54
55 protected:
56 MediaAnalyticsClient();
57
58 private:
59 DISALLOW_COPY_AND_ASSIGN(MediaAnalyticsClient);
60 };
61
62 } // namespace chromeos
63
64 #endif // CHROMEOS_DBUS_MEDIA_ANALYTICS_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698