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

Unified Diff: chromeos/dbus/media_analytics_client.h

Issue 2791983004: DBus MediaAnalyticsClient and media_perception pb. (Closed)
Patch Set: Changing the type of a couple vars to const. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/dbus/fake_upstart_client.cc ('k') | chromeos/dbus/media_analytics_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/media_analytics_client.h
diff --git a/chromeos/dbus/media_analytics_client.h b/chromeos/dbus/media_analytics_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..383d2245e9230be150bb5acbb2d69c15182af373
--- /dev/null
+++ b/chromeos/dbus/media_analytics_client.h
@@ -0,0 +1,68 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROMEOS_DBUS_MEDIA_ANALYTICS_CLIENT_H_
+#define CHROMEOS_DBUS_MEDIA_ANALYTICS_CLIENT_H_
+
+#include "base/callback.h"
+#include "base/macros.h"
+#include "chromeos/chromeos_export.h"
+#include "chromeos/dbus/dbus_client.h"
+#include "chromeos/media_perception/media_perception.pb.h"
+
+namespace chromeos {
+
+// MediaAnalyticsClient is used to communicate with a media analytics process
+// running outside of Chrome.
+class CHROMEOS_EXPORT MediaAnalyticsClient : public DBusClient {
+ public:
+ // Callback type for a State proto message received from the media analytics
+ // process.
+ using StateCallback =
+ base::Callback<void(bool succeeded, const mri::State& state)>;
+ // Handler type for signal received from media analytics process.
+ using MediaPerceptionSignalHandler =
+ base::Callback<void(const mri::MediaPerception& media_perception)>;
+ // Callback type for a Diagnostics proto message received from the media
+ // analytics process.
+ using DiagnosticsCallback =
+ base::Callback<void(bool succeeded, const mri::Diagnostics& diagnostics)>;
+
+ ~MediaAnalyticsClient() override;
+
+ // Gets the media analytics process state.
+ virtual void GetState(const StateCallback& callback) = 0;
+
+ // Sets the media analytics process state. |state.status| is expected to be
+ // set.
+ virtual void SetState(const mri::State& state,
+ const StateCallback& callback) = 0;
+
+ // Register event handler for the MediaPerception protos received as signal
+ // from the media analytics process.
+ virtual void SetMediaPerceptionSignalHandler(
+ const MediaPerceptionSignalHandler& handler) = 0;
+
+ // Resets the signal handler previously set by
+ // SetMediaPerceptionSignalHandler.
+ virtual void ClearMediaPerceptionSignalHandler() = 0;
+
+ // API for getting diagnostic information from the media analytics process
+ // over D-Bus as a Diagnostics proto message.
+ virtual void GetDiagnostics(const DiagnosticsCallback& callback) = 0;
+
+ // Factory function, creates new instance and returns ownership.
+ // For normal usage, access the singleton via DbusThreadManager::Get().
+ static MediaAnalyticsClient* Create();
+
+ protected:
+ MediaAnalyticsClient();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(MediaAnalyticsClient);
+};
+
+} // namespace chromeos
+
+#endif // CHROMEOS_DBUS_MEDIA_ANALYTICS_CLIENT_H_
« no previous file with comments | « chromeos/dbus/fake_upstart_client.cc ('k') | chromeos/dbus/media_analytics_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698