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

Unified Diff: third_party/WebKit/Source/modules/mediasource/TrackDefaultList.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/mediasource/TrackDefaultList.cpp
diff --git a/third_party/WebKit/Source/modules/mediasource/TrackDefaultList.cpp b/third_party/WebKit/Source/modules/mediasource/TrackDefaultList.cpp
index 8aa754a01f0397605f9f3e3d1a599c70c24057ae..8ebd378ffcde8720889f33a34fb4e70953272fcc 100644
--- a/third_party/WebKit/Source/modules/mediasource/TrackDefaultList.cpp
+++ b/third_party/WebKit/Source/modules/mediasource/TrackDefaultList.cpp
@@ -37,9 +37,9 @@ TrackDefaultList* TrackDefaultList::create(
TypeAndID(trackDefault->type(), trackDefault->byteStreamTrackID());
if (!typeAndIDToTrackDefaultMap.insert(key, trackDefault).isNewEntry) {
exceptionState.throwDOMException(
- InvalidAccessError, "Duplicate TrackDefault type (" + key.first +
- ") and byteStreamTrackID (" + key.second +
- ")");
+ InvalidAccessError,
+ "Duplicate TrackDefault type (" + key.first +
+ ") and byteStreamTrackID (" + key.second + ")");
return nullptr;
}
}

Powered by Google App Engine
This is Rietveld 408576698