Index: third_party/WebKit/Source/platform/CrossThreadCopier.cpp |
diff --git a/third_party/WebKit/Source/platform/CrossThreadCopier.cpp b/third_party/WebKit/Source/platform/CrossThreadCopier.cpp |
index 199b5e0dde3c1c93acf6e25d126e1c9eabbd3ba7..fd6c0364df20e51d7df8f56a82d1732e77553fb8 100644 |
--- a/third_party/WebKit/Source/platform/CrossThreadCopier.cpp |
+++ b/third_party/WebKit/Source/platform/CrossThreadCopier.cpp |
@@ -69,7 +69,8 @@ CrossThreadCopier<ResourceResponse>::copy(const ResourceResponse& response) { |
class CopierThreadSafeRefCountedTest |
: public ThreadSafeRefCounted<CopierThreadSafeRefCountedTest> {}; |
-// Add a generic specialization which will let's us verify that no other template matches. |
+// Add a generic specialization which will let's us verify that no other |
+// template matches. |
template <typename T> |
struct CrossThreadCopierBase<T, false> { |
typedef int Type; |
@@ -91,7 +92,8 @@ static_assert( |
CrossThreadCopier<CopierThreadSafeRefCountedTest*>::Type>::value), |
"Raw pointer + ThreadSafeRefCounted should NOT pass CrossThreadCopier"); |
-// Verify that RefCounted objects only match our generic template which exposes Type as int. |
+// Verify that RefCounted objects only match our generic template which exposes |
+// Type as int. |
class CopierRefCountedTest : public RefCounted<CopierRefCountedTest> {}; |
static_assert( |