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

Side by Side Diff: media/mojo/services/mojo_cdm_promise.h

Issue 2444683002: Move MediaKeys::Exception to CdmPromise::Exception (Closed)
Patch Set: include "media/base/media_keys.h" Created 4 years, 1 month 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_MOJO_SERVICES_MOJO_CDM_PROMISE_H_ 5 #ifndef MEDIA_MOJO_SERVICES_MOJO_CDM_PROMISE_H_
6 #define MEDIA_MOJO_SERVICES_MOJO_CDM_PROMISE_H_ 6 #define MEDIA_MOJO_SERVICES_MOJO_CDM_PROMISE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "media/base/cdm_promise.h" 12 #include "media/base/cdm_promise.h"
13 #include "media/mojo/interfaces/content_decryption_module.mojom.h" 13 #include "media/mojo/interfaces/content_decryption_module.mojom.h"
14 14
15 namespace media { 15 namespace media {
16 16
17 // media::CdmPromiseTemplate implementations backed by base::Callbacks. 17 // media::CdmPromiseTemplate implementations backed by base::Callbacks.
18 template <typename... T> 18 template <typename... T>
19 class MojoCdmPromise : public CdmPromiseTemplate<T...> { 19 class MojoCdmPromise : public CdmPromiseTemplate<T...> {
20 public: 20 public:
21 using CallbackType = 21 using CallbackType =
22 base::Callback<void(mojom::CdmPromiseResultPtr, const T&...)>; 22 base::Callback<void(mojom::CdmPromiseResultPtr, const T&...)>;
23 23
24 explicit MojoCdmPromise(const CallbackType& callback); 24 explicit MojoCdmPromise(const CallbackType& callback);
25 ~MojoCdmPromise() final; 25 ~MojoCdmPromise() final;
26 26
27 // CdmPromiseTemplate<> implementation. 27 // CdmPromiseTemplate<> implementation.
28 void resolve(const T&... result) final; 28 void resolve(const T&... result) final;
29 void reject(MediaKeys::Exception exception, 29 void reject(CdmPromise::Exception exception,
30 uint32_t system_code, 30 uint32_t system_code,
31 const std::string& error_message) final; 31 const std::string& error_message) final;
32 32
33 private: 33 private:
34 using CdmPromiseTemplate<T...>::IsPromiseSettled; 34 using CdmPromiseTemplate<T...>::IsPromiseSettled;
35 using CdmPromiseTemplate<T...>::MarkPromiseSettled; 35 using CdmPromiseTemplate<T...>::MarkPromiseSettled;
36 using CdmPromiseTemplate<T...>::RejectPromiseOnDestruction; 36 using CdmPromiseTemplate<T...>::RejectPromiseOnDestruction;
37 37
38 CallbackType callback_; 38 CallbackType callback_;
39 }; 39 };
40 40
41 } // namespace media 41 } // namespace media
42 42
43 #endif // MEDIA_MOJO_SERVICES_MOJO_CDM_PROMISE_H_ 43 #endif // MEDIA_MOJO_SERVICES_MOJO_CDM_PROMISE_H_
OLDNEW
« no previous file with comments | « media/mojo/interfaces/content_decryption_module.typemap ('k') | media/mojo/services/mojo_cdm_promise.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698