Title: [242582] trunk/Source/WebCore
Revision
242582
Author
justin_...@apple.com
Date
2019-03-06 17:02:59 -0800 (Wed, 06 Mar 2019)

Log Message

Unreviewed build fix. Replace a forward declaration with an include.

* Modules/webgpu/WebGPUTextureView.cpp:
* Modules/webgpu/WebGPUTextureView.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (242581 => 242582)


--- trunk/Source/WebCore/ChangeLog	2019-03-07 00:51:52 UTC (rev 242581)
+++ trunk/Source/WebCore/ChangeLog	2019-03-07 01:02:59 UTC (rev 242582)
@@ -1,5 +1,12 @@
 2019-03-06  Justin Fan  <justin_...@apple.com>
 
+        Unreviewed build fix. Replace a forward declaration with an include.
+
+        * Modules/webgpu/WebGPUTextureView.cpp:
+        * Modules/webgpu/WebGPUTextureView.h:
+
+2019-03-06  Justin Fan  <justin_...@apple.com>
+
         [Web GPU] GPUTexture and GPUTextureView updates, and related GPUBindGroup updates
         https://bugs.webkit.org/show_bug.cgi?id=195347
 

Modified: trunk/Source/WebCore/Modules/webgpu/WebGPUTextureView.cpp (242581 => 242582)


--- trunk/Source/WebCore/Modules/webgpu/WebGPUTextureView.cpp	2019-03-07 00:51:52 UTC (rev 242581)
+++ trunk/Source/WebCore/Modules/webgpu/WebGPUTextureView.cpp	2019-03-07 01:02:59 UTC (rev 242582)
@@ -28,8 +28,6 @@
 
 #if ENABLE(WEBGPU)
 
-#include "GPUTexture.h"
-
 namespace WebCore {
 
 Ref<WebGPUTextureView> WebGPUTextureView::create(RefPtr<GPUTexture>&& view)

Modified: trunk/Source/WebCore/Modules/webgpu/WebGPUTextureView.h (242581 => 242582)


--- trunk/Source/WebCore/Modules/webgpu/WebGPUTextureView.h	2019-03-07 00:51:52 UTC (rev 242581)
+++ trunk/Source/WebCore/Modules/webgpu/WebGPUTextureView.h	2019-03-07 01:02:59 UTC (rev 242582)
@@ -27,13 +27,12 @@
 
 #if ENABLE(WEBGPU)
 
+#include "GPUTexture.h"
 #include <wtf/Ref.h>
 #include <wtf/RefCounted.h>
 
 namespace WebCore {
 
-class GPUTexture;
-
 class WebGPUTextureView : public RefCounted<WebGPUTextureView> {
 public:
     static Ref<WebGPUTextureView> create(RefPtr<GPUTexture>&&);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to