Title: [215575] trunk/Source/WebCore
Revision
215575
Author
bfulg...@apple.com
Date
2017-04-20 13:14:55 -0700 (Thu, 20 Apr 2017)

Log Message

[Win] REGRESSION(r215486): Windows Release build is broken
https://bugs.webkit.org/show_bug.cgi?id=171024
<rdar://problem/31722618>

Reviewed by Mark Lam.

Add missing include needed for clean Release build on Windows (proper
fix found by Fujii Hironori).

* bindings/js/JSDOMGlobalObject.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (215574 => 215575)


--- trunk/Source/WebCore/ChangeLog	2017-04-20 20:09:47 UTC (rev 215574)
+++ trunk/Source/WebCore/ChangeLog	2017-04-20 20:14:55 UTC (rev 215575)
@@ -1,3 +1,16 @@
+2017-04-20  Brent Fulgham  <bfulg...@apple.com>
+
+        [Win] REGRESSION(r215486): Windows Release build is broken
+        https://bugs.webkit.org/show_bug.cgi?id=171024
+        <rdar://problem/31722618>
+
+        Reviewed by Mark Lam.
+
+        Add missing include needed for clean Release build on Windows (proper
+        fix found by Fujii Hironori).
+
+        * bindings/js/JSDOMGlobalObject.h:
+
 2017-04-20  Said Abou-Hallawa  <sabouhall...@apple.com>
 
         CachedImage should cancel loading images for unsupported/unknown types

Modified: trunk/Source/WebCore/bindings/js/JSDOMGlobalObject.h (215574 => 215575)


--- trunk/Source/WebCore/bindings/js/JSDOMGlobalObject.h	2017-04-20 20:09:47 UTC (rev 215574)
+++ trunk/Source/WebCore/bindings/js/JSDOMGlobalObject.h	2017-04-20 20:14:55 UTC (rev 215575)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008, 2012 Apple Inc. All Rights Reserved.
+ * Copyright (C) 2008-2017 Apple Inc. All Rights Reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -28,6 +28,7 @@
 
 #include "PlatformExportMacros.h"
 #include "WebCoreJSBuiltinInternals.h"
+#include <heap/HeapInlines.h>
 #include <heap/LockDuringMarking.h>
 #include <runtime/JSGlobalObject.h>
 #include <runtime/StructureInlines.h>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to