Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1727)

Unified Diff: Tools/TestWebKitAPI/qt/PlatformUtilitiesQt.cpp

Issue 13602008: Remove non-chromium code from TestWebKitAPI (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/TestWebKitAPI/qt/InjectedBundleControllerQt.cpp ('k') | Tools/TestWebKitAPI/qt/PlatformWebViewQt.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/TestWebKitAPI/qt/PlatformUtilitiesQt.cpp
diff --git a/Tools/TestWebKitAPI/qt/PlatformUtilitiesQt.cpp b/Tools/TestWebKitAPI/qt/PlatformUtilitiesQt.cpp
deleted file mode 100644
index 5a3c13a66166cdf2680ee1f1e897f68bcc75f1a1..0000000000000000000000000000000000000000
--- a/Tools/TestWebKitAPI/qt/PlatformUtilitiesQt.cpp
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-
-#include <WebKit2/WKStringQt.h>
-#include <WebKit2/WKNativeEvent.h>
-#include <WebKit2/WKURLQt.h>
-
-#include <QCoreApplication>
-#include <QDir>
-#include <QUrl>
-#include <QThread>
-
-namespace TestWebKitAPI {
-namespace Util {
-
-void run(bool* done)
-{
- while (!*done)
- QCoreApplication::processEvents();
-}
-
-void sleep(double seconds)
-{
- QThread::sleep(seconds);
-}
-
-WKStringRef createInjectedBundlePath()
-{
- QString path = QFileInfo(QStringLiteral(ROOT_BUILD_DIR "/lib/libTestWebKitAPIInjectedBundle")).absoluteFilePath();
-
- return WKStringCreateWithQString(path);
-}
-
-WKURLRef createURLForResource(const char* resource, const char* extension)
-{
- QDir path(QStringLiteral(APITEST_SOURCE_DIR));
- QString filename = QString::fromLocal8Bit(resource) + QStringLiteral(".") + QString::fromLocal8Bit(extension);
-
- return WKURLCreateWithQUrl(QUrl::fromLocalFile(path.absoluteFilePath(filename)));
-}
-
-WKURLRef URLForNonExistentResource()
-{
- return WKURLCreateWithUTF8CString("file:///does-not-exist.html");
-}
-
-bool isKeyDown(WKNativeEventPtr event)
-{
- return event->type() == QEvent::KeyPress;
-}
-
-} // namespace Util
-} // namespace TestWebKitAPI
« no previous file with comments | « Tools/TestWebKitAPI/qt/InjectedBundleControllerQt.cpp ('k') | Tools/TestWebKitAPI/qt/PlatformWebViewQt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698