Title: [254211] trunk/Source/WebKit
- Revision
- 254211
- Author
- [email protected]
- Date
- 2020-01-08 11:50:14 -0800 (Wed, 08 Jan 2020)
Log Message
Remove an unused variable in WebCoreArgumentCodersCocoa.mm after r254202
https://bugs.webkit.org/show_bug.cgi?id=205939
Reviewed by Tim Horton.
Remove an unused temporary variable that was only used for debugging.
* Shared/Cocoa/WebCoreArgumentCodersCocoa.mm:
(IPC::ArgumentCoder<FontHandle>::decodePlatformData):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (254210 => 254211)
--- trunk/Source/WebKit/ChangeLog 2020-01-08 19:38:50 UTC (rev 254210)
+++ trunk/Source/WebKit/ChangeLog 2020-01-08 19:50:14 UTC (rev 254211)
@@ -1,3 +1,15 @@
+2020-01-08 Wenson Hsieh <[email protected]>
+
+ Remove an unused variable in WebCoreArgumentCodersCocoa.mm after r254202
+ https://bugs.webkit.org/show_bug.cgi?id=205939
+
+ Reviewed by Tim Horton.
+
+ Remove an unused temporary variable that was only used for debugging.
+
+ * Shared/Cocoa/WebCoreArgumentCodersCocoa.mm:
+ (IPC::ArgumentCoder<FontHandle>::decodePlatformData):
+
2020-01-08 Chris Dumez <[email protected]>
Move UIProcess DependencyProcessAssertion from WebContent to AuxiliaryProcess
Modified: trunk/Source/WebKit/Shared/Cocoa/WebCoreArgumentCodersCocoa.mm (254210 => 254211)
--- trunk/Source/WebKit/Shared/Cocoa/WebCoreArgumentCodersCocoa.mm 2020-01-08 19:38:50 UTC (rev 254210)
+++ trunk/Source/WebKit/Shared/Cocoa/WebCoreArgumentCodersCocoa.mm 2020-01-08 19:50:14 UTC (rev 254211)
@@ -500,7 +500,6 @@
if (!IPC::decode(decoder, font))
return false;
- auto previousValue = handle.font;
handle.font = Font::create({ (__bridge CTFontRef)font.get(), static_cast<float>([font pointSize]) });
return true;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes