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

Unified Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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: 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

Powered by Google App Engine
This is Rietveld 408576698