OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:decryptor_ready_cb
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/content/renderer/media/crypto/
proxy_decryptor.cc
77
const media::DecryptorReadyCB&
decryptor_ready_cb
) {
81
if (
decryptor_ready_cb
.is_null()) {
90
decryptor_ready_cb
.Run(media_keys_->GetDecryptor());
93
decryptor_ready_cb_ =
decryptor_ready_cb
;
proxy_decryptor.h
76
// the |
decryptor_ready_cb
| provided.
77
// If |
decryptor_ready_cb
| is null, the existing callback will be fired with
79
void SetDecryptorReadyCB(const media::DecryptorReadyCB&
decryptor_ready_cb
);
/external/chromium_org/media/filters/
decrypting_video_decoder_unittest.cc
400
DecryptorReadyCB
decryptor_ready_cb
;
local
402
.WillOnce(SaveArg<0>(&
decryptor_ready_cb
));
406
// |
decryptor_ready_cb
| is saved but not called here.
407
EXPECT_FALSE(
decryptor_ready_cb
.is_null());
410
// callback to cancel the |
decryptor_ready_cb
|.
412
.WillOnce(ResetAndRunCallback(&
decryptor_ready_cb
,
pipeline_integration_test_base.h
130
const DecryptorReadyCB&
decryptor_ready_cb
);
pipeline_integration_test_base.cc
290
const DecryptorReadyCB&
decryptor_ready_cb
) {
291
decryptor_ready_cb
.Run(decryptor);
Completed in 151 milliseconds