| Index: third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
|
| diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
|
| index 84a8407ab2a6191f884c0b18fdb0dca5547eb689..553459a18bd9ac0bbb9f2db446a16344ccf97cd2 100644
|
| --- a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
|
| +++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
|
| @@ -158,8 +158,8 @@ MediaKeys::~MediaKeys() {
|
| MediaKeySession* MediaKeys::createSession(ScriptState* scriptState,
|
| const String& sessionTypeString,
|
| ExceptionState& exceptionState) {
|
| - DVLOG(MEDIA_KEYS_LOG_LEVEL) << __func__ << "(" << this << ") "
|
| - << sessionTypeString;
|
| + DVLOG(MEDIA_KEYS_LOG_LEVEL)
|
| + << __func__ << "(" << this << ") " << sessionTypeString;
|
|
|
| // From http://w3c.github.io/encrypted-media/#createSession
|
|
|
| @@ -204,9 +204,10 @@ ScriptPromise MediaKeys::setServerCertificate(
|
| // with a new a newly created TypeError.
|
| if (!serverCertificate.byteLength()) {
|
| return ScriptPromise::reject(
|
| - scriptState, V8ThrowException::createTypeError(
|
| - scriptState->isolate(),
|
| - "The serverCertificate parameter is empty."));
|
| + scriptState,
|
| + V8ThrowException::createTypeError(
|
| + scriptState->isolate(),
|
| + "The serverCertificate parameter is empty."));
|
| }
|
|
|
| // 3. Let certificate be a copy of the contents of the serverCertificate
|
|
|