Index: third_party/WebKit/Source/platform/Supplementable.h |
diff --git a/third_party/WebKit/Source/platform/Supplementable.h b/third_party/WebKit/Source/platform/Supplementable.h |
index ccccff6db500c9e822e984904016b22ae3da2743..1eb53aecb66aa57716de8629803e674dca67abd1 100644 |
--- a/third_party/WebKit/Source/platform/Supplementable.h |
+++ b/third_party/WebKit/Source/platform/Supplementable.h |
@@ -69,7 +69,8 @@ namespace blink { |
// |
// MyClass* MyClass::from(MySupplementable* host) |
// { |
-// return static_cast<MyClass*>(Supplement<MySupplementable>::from(host, supplementName())); |
+// return static_cast<MyClass*>( |
+// Supplement<MySupplementable>::from(host, supplementName())); |
// } |
// |
// What you should know about thread checks |