Index: third_party/WebKit/Source/core/layout/LayoutThemeMac.mm |
diff --git a/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm b/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm |
index d9456976bab97ffe9c972889463bb811b87a84ca..ea9dab5bdfd6568c95368ac84ff73815104c74e6 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm |
+++ b/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm |
@@ -91,9 +91,10 @@ |
// FIXME: This is a post-Lion-only workaround for <rdar://problem/11385461>. |
// When that bug is resolved, we should remove this code. |
CFMutableDictionaryRef coreUIDrawOptions = CFDictionaryCreateMutableCopy( |
- NULL, 0, [super _coreUIDrawOptionsWithFrame:cellFrame |
- inView:controlView |
- includeFocus:includeFocus]); |
+ NULL, 0, |
+ [super _coreUIDrawOptionsWithFrame:cellFrame |
+ inView:controlView |
+ includeFocus:includeFocus]); |
CFDictionarySetValue(coreUIDrawOptions, @"borders only", kCFBooleanTrue); |
return (CFDictionaryRef)[NSMakeCollectable(coreUIDrawOptions) autorelease]; |
} |