Title: [95651] trunk/Source/WebCore
Revision
95651
Author
commit-qu...@webkit.org
Date
2011-09-21 11:18:59 -0700 (Wed, 21 Sep 2011)

Log Message

[GTK] Fix build break when enabling webgl on r95593
https://bugs.webkit.org/show_bug.cgi?id=68502

Patch by ChangSeok Oh <shivami...@gmail.com> on 2011-09-21
Reviewed by Martin Robinson.

Add PassOwnPtr.h to GC3DPrivate.h and remove useless one from GC3DGtk.cpp & GC3DPrivate.cpp

No tests required.

* platform/graphics/gtk/GraphicsContext3DGtk.cpp:
* platform/graphics/gtk/GraphicsContext3DPrivate.cpp:
* platform/graphics/gtk/GraphicsContext3DPrivate.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (95650 => 95651)


--- trunk/Source/WebCore/ChangeLog	2011-09-21 18:14:02 UTC (rev 95650)
+++ trunk/Source/WebCore/ChangeLog	2011-09-21 18:18:59 UTC (rev 95651)
@@ -1,3 +1,18 @@
+2011-09-21  ChangSeok Oh  <shivami...@gmail.com>
+
+        [GTK] Fix build break when enabling webgl on r95593
+        https://bugs.webkit.org/show_bug.cgi?id=68502
+
+        Reviewed by Martin Robinson.
+
+        Add PassOwnPtr.h to GC3DPrivate.h and remove useless one from GC3DGtk.cpp & GC3DPrivate.cpp
+
+        No tests required.
+
+        * platform/graphics/gtk/GraphicsContext3DGtk.cpp:
+        * platform/graphics/gtk/GraphicsContext3DPrivate.cpp:
+        * platform/graphics/gtk/GraphicsContext3DPrivate.h:
+
 2011-09-21  Vsevolod Vlasov  <vse...@chromium.org>
 
         Web Inspector: clear resource agent resource cache upon resource agent's disable.

Modified: trunk/Source/WebCore/platform/graphics/gtk/GraphicsContext3DGtk.cpp (95650 => 95651)


--- trunk/Source/WebCore/platform/graphics/gtk/GraphicsContext3DGtk.cpp	2011-09-21 18:14:02 UTC (rev 95650)
+++ trunk/Source/WebCore/platform/graphics/gtk/GraphicsContext3DGtk.cpp	2011-09-21 18:18:59 UTC (rev 95651)
@@ -28,7 +28,6 @@
 #include "GraphicsContext3D.h"
 
 #if ENABLE(WEBGL)
-#include <wtf/PassOwnPtr.h>
 #include "Extensions3DOpenGL.h"
 #include "GraphicsContext3DPrivate.h"
 #include "OpenGLShims.h"

Modified: trunk/Source/WebCore/platform/graphics/gtk/GraphicsContext3DPrivate.cpp (95650 => 95651)


--- trunk/Source/WebCore/platform/graphics/gtk/GraphicsContext3DPrivate.cpp	2011-09-21 18:14:02 UTC (rev 95650)
+++ trunk/Source/WebCore/platform/graphics/gtk/GraphicsContext3DPrivate.cpp	2011-09-21 18:18:59 UTC (rev 95651)
@@ -26,7 +26,6 @@
 #include "OpenGLShims.h"
 #include <GL/glx.h>
 #include <dlfcn.h>
-#include <wtf/PassOwnPtr.h>
 
 // We do not want to call glXMakeContextCurrent using different Display pointers,
 // because it might lead to crashes in some drivers (fglrx). We use a shared display

Modified: trunk/Source/WebCore/platform/graphics/gtk/GraphicsContext3DPrivate.h (95650 => 95651)


--- trunk/Source/WebCore/platform/graphics/gtk/GraphicsContext3DPrivate.h	2011-09-21 18:14:02 UTC (rev 95650)
+++ trunk/Source/WebCore/platform/graphics/gtk/GraphicsContext3DPrivate.h	2011-09-21 18:18:59 UTC (rev 95651)
@@ -20,6 +20,8 @@
 #ifndef GraphicsContext3DPrivate_h
 #define GraphicsContext3DPrivate_h
 
+#include <wtf/PassOwnPtr.h>
+
 typedef struct __GLXcontextRec *GLXContext;
 typedef unsigned long GLXPbuffer;
 typedef unsigned long GLXPixmap;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to