diff options
| author | Konstantin Tokarev <annulen@yandex.ru> | 2016-09-28 16:39:37 +0300 |
|---|---|---|
| committer | Konstantin Tokarev <annulen@yandex.ru> | 2017-02-02 12:31:01 +0000 |
| commit | 9daf1655d7e4eaaa6ed5f44055a4b4fd399fd25c (patch) | |
| tree | 322337ad0acbc75732f916376ec6d36e7ec0e5bc /Source/WebKit2/UIProcess/Launcher | |
| parent | 6882a04fb36642862b11efe514251d32070c3d65 (diff) | |
| download | qtwebkit-9daf1655d7e4eaaa6ed5f44055a4b4fd399fd25c.tar.gz | |
Imported WebKit commit eb954cdcf58f9b915b2fcb6f8e4cb3a60650a4f3
Change-Id: I8dda875c38075d43b76fe3a21acb0ffa102bb82d
Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
Diffstat (limited to 'Source/WebKit2/UIProcess/Launcher')
| -rw-r--r-- | Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp b/Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp index 7d0203478..653dfb52f 100644 --- a/Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp +++ b/Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp @@ -36,9 +36,9 @@ #include <QProcess> #include <QString> #include <QtCore/qglobal.h> -#include <WebCore/RunLoop.h> #include <wtf/HashSet.h> #include <wtf/PassRefPtr.h> +#include <wtf/RunLoop.h> #include <wtf/Threading.h> #include <wtf/text/WTFString.h> @@ -54,8 +54,8 @@ #endif #if defined(Q_OS_LINUX) -#include <sys/prctl.h> #include <signal.h> +#include <sys/prctl.h> #endif #if OS(WINDOWS) @@ -84,8 +84,7 @@ using namespace WebCore; namespace WebKit { -class QtWebProcess : public QProcess -{ +class QtWebProcess : public QProcess { Q_OBJECT public: QtWebProcess(QObject* parent = 0) @@ -143,8 +142,8 @@ void ProcessLauncher::launchProcess() commandLine = commandLine.arg(serviceName); #elif OS(WINDOWS) - CoreIPC::Connection::Identifier connector, clientIdentifier; - if (!CoreIPC::Connection::createServerAndClientIdentifiers(connector, clientIdentifier)) { + IPC::Connection::Identifier connector, clientIdentifier; + if (!IPC::Connection::createServerAndClientIdentifiers(connector, clientIdentifier)) { // FIXME: What should we do here? ASSERT_NOT_REACHED(); } |
