Title: [235957] trunk/Source/WebKitLegacy/mac
Revision
235957
Author
[email protected]
Date
2018-09-12 15:47:26 -0700 (Wed, 12 Sep 2018)

Log Message

Fix an internal build after r235935
https://bugs.webkit.org/show_bug.cgi?id=188996

* Carbon/HIWebView.mm:
(Draw):
r235935 fixed a mismatched macro with deprecated functions below it.  To quickly fix the build, I'm just going to restore the imbalance.

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/mac/Carbon/HIWebView.mm (235956 => 235957)


--- trunk/Source/WebKitLegacy/mac/Carbon/HIWebView.mm	2018-09-12 22:36:51 UTC (rev 235956)
+++ trunk/Source/WebKitLegacy/mac/Carbon/HIWebView.mm	2018-09-12 22:47:26 UTC (rev 235957)
@@ -325,7 +325,6 @@
         GetPort(&port);
         GetPortBounds(port, &portRect);
         CreateCGContextForPort(port, &inContext);
-        ALLOW_DEPRECATED_DECLARATIONS_END
         SyncCGContextOriginWithPort(inContext, port);
         CGContextTranslateCTM(inContext, 0, (portRect.bottom - portRect.top));
         CGContextScaleCTM(inContext, 1, -1);

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (235956 => 235957)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2018-09-12 22:36:51 UTC (rev 235956)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2018-09-12 22:47:26 UTC (rev 235957)
@@ -1,3 +1,12 @@
+2018-09-12  Alex Christensen  <[email protected]>
+
+        Fix an internal build after r235935
+        https://bugs.webkit.org/show_bug.cgi?id=188996
+
+        * Carbon/HIWebView.mm:
+        (Draw):
+        r235935 fixed a mismatched macro with deprecated functions below it.  To quickly fix the build, I'm just going to restore the imbalance.
+
 2018-09-12  Guillaume Emont  <[email protected]>
 
         Add IGNORE_WARNING_.* macros
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to