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

Unified Diff: chrome/browser/media/encrypted_media_message_filter_android.h

Issue 23513055: Populate canPlayType to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing commnets Created 7 years, 3 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
Index: chrome/browser/media/encrypted_media_message_filter_android.h
diff --git a/chrome/browser/media/encrypted_media_message_filter_android.h b/chrome/browser/media/encrypted_media_message_filter_android.h
new file mode 100644
index 0000000000000000000000000000000000000000..9e1d0d5e877ebc4e3b0916d8a5a8bf7a58e0a3ed
--- /dev/null
+++ b/chrome/browser/media/encrypted_media_message_filter_android.h
@@ -0,0 +1,45 @@
+// Copyright 2013 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 CHROME_BROWSER_MEDIA_ENCRYPTED_MEDIA_MESSAGE_FILTER_ANDROID_H_
+#define CHROME_BROWSER_MEDIA_ENCRYPTED_MEDIA_MESSAGE_FILTER_ANDROID_H_
+
+#include "base/basictypes.h"
+#include "content/public/browser/browser_message_filter.h"
+
+namespace android {
+struct SupportedKeySystemRequest;
+struct SupportedKeySystemResponse;
+}
+
+namespace chrome {
+
+// Message filter for EME on android. It is responsible for getting the
+// SupportedKeySystems information and passing it back to renderer.
+class EncryptedMediaMessageFilterAndroid
+ : public content::BrowserMessageFilter {
+ public:
+ EncryptedMediaMessageFilterAndroid();
+
+ private:
+ virtual ~EncryptedMediaMessageFilterAndroid();
+
+ // BrowserMessageFilter implementation.
+ virtual bool OnMessageReceived(const IPC::Message& message,
+ bool* message_was_ok) OVERRIDE;
+ virtual void OverrideThreadForMessage(
+ const IPC::Message& message,
+ content::BrowserThread::ID* thread) OVERRIDE;
+
+ // Retrieve the supported key systems.
+ void OnGetSupportedKeySystems(
+ const android::SupportedKeySystemRequest& request,
+ android::SupportedKeySystemResponse* response);
+
+ DISALLOW_COPY_AND_ASSIGN(EncryptedMediaMessageFilterAndroid);
+};
+
+} // namespace chrome
+
+#endif // CHROME_BROWSER_MEDIA_ENCRYPTED_MEDIA_MESSAGE_FILTER_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698