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

Unified Diff: media/base/cdm_factory.h

Issue 1102363005: Initialize the CDM asynchronously (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create() changes Created 5 years, 8 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: media/base/cdm_factory.h
diff --git a/media/base/cdm_factory.h b/media/base/cdm_factory.h
index f9c5541bc2c54585579775a3d8f367b90b902068..8e0328aed5e9bef502782bb976e26a2d4308675e 100644
--- a/media/base/cdm_factory.h
+++ b/media/base/cdm_factory.h
@@ -15,10 +15,10 @@ class GURL;
namespace media {
+using CdmCreatedCB = base::Callback<void(scoped_ptr<MediaKeys>)>;
+
class MEDIA_EXPORT CdmFactory {
public:
- using CdmCreatedCB = base::Callback<void(scoped_ptr<MediaKeys>)>;
-
CdmFactory();
virtual ~CdmFactory();

Powered by Google App Engine
This is Rietveld 408576698