2011-05-30 Carlos Garcia Campos <cgarcia@igalia.com>
authorcarlosgc@webkit.org <carlosgc@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 30 May 2011 14:13:32 +0000 (14:13 +0000)
committercarlosgc@webkit.org <carlosgc@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 30 May 2011 14:13:32 +0000 (14:13 +0000)
        Reviewed by Martin Robinson.

        [GTK] Remove some unneeded header includes
        https://bugs.webkit.org/show_bug.cgi?id=60536

        * Platform/CoreIPC/Connection.cpp: Remove WebProcess.h.
        * Platform/CoreIPC/unix/ConnectionUnix.cpp: Remove
        ProcessLauncher.h and WebProcessProxy.h. Add <wtf/OwnArrayPtr.h>.
        * WebProcess/Plugins/Netscape/NPJSObject.cpp: Remove PluginView.h.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@87685 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebKit2/ChangeLog
Source/WebKit2/Platform/CoreIPC/Connection.cpp
Source/WebKit2/Platform/CoreIPC/unix/ConnectionUnix.cpp
Source/WebKit2/WebProcess/Plugins/Netscape/NPJSObject.cpp

index 53ce772..e06d430 100644 (file)
@@ -1,3 +1,15 @@
+2011-05-30  Carlos Garcia Campos  <cgarcia@igalia.com>
+
+        Reviewed by Martin Robinson.
+
+        [GTK] Remove some unneeded header includes
+        https://bugs.webkit.org/show_bug.cgi?id=60536
+
+        * Platform/CoreIPC/Connection.cpp: Remove WebProcess.h.
+        * Platform/CoreIPC/unix/ConnectionUnix.cpp: Remove
+        ProcessLauncher.h and WebProcessProxy.h. Add <wtf/OwnArrayPtr.h>.
+        * WebProcess/Plugins/Netscape/NPJSObject.cpp: Remove PluginView.h.
+
 2011-05-29  Darin Adler  <darin@apple.com>
 
         Reviewed by Dan Bernstein.
index 161d70d..2bd4023 100644 (file)
@@ -29,7 +29,6 @@
 #include "BinarySemaphore.h"
 #include "CoreIPCMessageKinds.h"
 #include "RunLoop.h"
-#include "WebProcess.h"
 #include "WorkItem.h"
 #include <wtf/CurrentTime.h>
 
index 92ffff3..dede0a1 100644 (file)
 #include "Connection.h"
 
 #include "ArgumentEncoder.h"
-#include "ProcessLauncher.h"
 #include "WorkItem.h"
 #include "SharedMemory.h"
-#include "WebProcessProxy.h"
 #include <sys/socket.h>
 #include <unistd.h>
 #include <errno.h>
 #include <fcntl.h>
 #include <wtf/Assertions.h>
+#include <wtf/OwnArrayPtr.h>
 
 #if PLATFORM(QT)
 #include <QApplication>
index 7720e88..aa398c5 100644 (file)
@@ -29,7 +29,6 @@
 #include "JSNPObject.h"
 #include "NPRuntimeObjectMap.h"
 #include "NPRuntimeUtilities.h"
-#include "PluginView.h"
 #include <JavaScriptCore/JSLock.h>
 #include <JavaScriptCore/JSObject.h>
 #include <WebCore/Frame.h>