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

Unified Diff: content/shell/renderer/test_runner/WebTestDelegate.h

Issue 583113002: Abstract class WebTestDelegate to chromium c++ style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update test_runner Created 6 years, 3 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 | « content/shell/BUILD.gn ('k') | content/shell/renderer/test_runner/event_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/renderer/test_runner/WebTestDelegate.h
diff --git a/content/shell/renderer/test_runner/WebTestDelegate.h b/content/shell/renderer/test_runner/WebTestDelegate.h
deleted file mode 100644
index f8918235c615f679fcf1a989028f7f39cfef93ea..0000000000000000000000000000000000000000
--- a/content/shell/renderer/test_runner/WebTestDelegate.h
+++ /dev/null
@@ -1,175 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBTESTDELEGATE_H_
-#define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBTESTDELEGATE_H_
-
-#include <string>
-
-#include "third_party/WebKit/public/platform/WebScreenOrientationType.h"
-#include "third_party/WebKit/public/platform/WebString.h"
-#include "third_party/WebKit/public/platform/WebURL.h"
-#include "third_party/WebKit/public/platform/WebVector.h"
-#include "third_party/WebKit/public/web/WebNotificationPresenter.h"
-
-#define WEBTESTRUNNER_NEW_HISTORY_CAPTURE
-
-namespace blink {
-class WebBatteryStatus;
-class WebDeviceMotionData;
-class WebDeviceOrientationData;
-class WebFrame;
-class WebGamepad;
-class WebGamepads;
-class WebHistoryItem;
-struct WebRect;
-struct WebSize;
-struct WebURLError;
-}
-
-namespace content {
-
-class DeviceLightData;
-class RendererGamepadProvider;
-class WebTask;
-class WebTestProxyBase;
-struct TestPreferences;
-
-class WebTestDelegate {
-public:
- // Set and clear the edit command to execute on the next call to
- // WebViewClient::handleCurrentKeyboardEvent().
- virtual void clearEditCommand() = 0;
- virtual void setEditCommand(const std::string& name, const std::string& value) = 0;
-
- // Sets gamepad provider to be used for tests.
- virtual void setGamepadProvider(scoped_ptr<RendererGamepadProvider>) = 0;
-
- // Set data to return when registering via
- // Platform::setDeviceLightListener().
- virtual void setDeviceLightData(const double) = 0;
- // Set data to return when registering via
- // Platform::setDeviceMotionListener().
- virtual void setDeviceMotionData(const blink::WebDeviceMotionData&) = 0;
- // Set data to return when registering via Platform::setDeviceOrientationListener().
- virtual void setDeviceOrientationData(const blink::WebDeviceOrientationData&) = 0;
-
- // Set orientation to set when registering via Platform::setScreenOrientationListener().
- virtual void setScreenOrientation(const blink::WebScreenOrientationType&) = 0;
-
- // Reset the screen orientation data used for testing.
- virtual void resetScreenOrientation() = 0;
-
- // Notifies blink about a change in battery status.
- virtual void didChangeBatteryStatus(const blink::WebBatteryStatus&) = 0;
-
- // Add a message to the text dump for the layout test.
- virtual void printMessage(const std::string& message) = 0;
-
- // The delegate takes ownership of the WebTask objects and is responsible
- // for deleting them.
- virtual void postTask(WebTask*) = 0;
- virtual void postDelayedTask(WebTask*, long long ms) = 0;
-
- // Register a new isolated filesystem with the given files, and return the
- // new filesystem id.
- virtual blink::WebString registerIsolatedFileSystem(const blink::WebVector<blink::WebString>& absoluteFilenames) = 0;
-
- // Gets the current time in milliseconds since the UNIX epoch.
- virtual long long getCurrentTimeInMillisecond() = 0;
-
- // Convert the provided relative path into an absolute path.
- virtual blink::WebString getAbsoluteWebStringFromUTF8Path(const std::string& path) = 0;
-
- // Reads in the given file and returns its contents as data URL.
- virtual blink::WebURL localFileToDataURL(const blink::WebURL&) = 0;
-
- // Replaces file:///tmp/LayoutTests/ with the actual path to the
- // LayoutTests directory.
- virtual blink::WebURL rewriteLayoutTestsURL(const std::string& utf8URL) = 0;
-
- // Manages the settings to used for layout tests.
- virtual TestPreferences* preferences() = 0;
- virtual void applyPreferences() = 0;
-
- // Enables or disables synchronous resize mode. When enabled, all window-sizing machinery is
- // short-circuited inside the renderer. This mode is necessary for some tests that were written
- // before browsers had multi-process architecture and rely on window resizes to happen synchronously.
- // The function has "unfortunate" it its name because we must strive to remove all tests
- // that rely on this... well, unfortunate behavior. See http://crbug.com/309760 for the plan.
- virtual void useUnfortunateSynchronousResizeMode(bool) = 0;
-
- // Controls auto resize mode.
- virtual void enableAutoResizeMode(const blink::WebSize& minSize, const blink::WebSize& maxSize) = 0;
- virtual void disableAutoResizeMode(const blink::WebSize&) = 0;
-
- // Clears DevTools' localStorage when an inspector test is started.
- virtual void clearDevToolsLocalStorage() = 0;
-
- // Opens and closes the inspector.
- virtual void showDevTools(const std::string& settings,
- const std::string& frontend_url) = 0;
- virtual void closeDevTools() = 0;
-
- // Evaluate the given script in the DevTools agent.
- virtual void evaluateInWebInspector(long callID, const std::string& script) = 0;
-
- // Controls WebSQL databases.
- virtual void clearAllDatabases() = 0;
- virtual void setDatabaseQuota(int) = 0;
-
- // Controls Web Notification permissions.
- virtual blink::WebNotificationPresenter::Permission
- checkWebNotificationPermission(const GURL& origin) = 0;
- virtual void grantWebNotificationPermission(const GURL& origin,
- bool permission_granted) = 0;
- virtual void clearWebNotificationPermissions() = 0;
-
- // Controls the device scale factor of the main WebView for hidpi tests.
- virtual void setDeviceScaleFactor(float) = 0;
-
- // Change the device color profile while running a layout test.
- virtual void setDeviceColorProfile(const std::string& name) = 0;
-
- // Controls which WebView should be focused.
- virtual void setFocus(WebTestProxyBase*, bool) = 0;
-
- // Controls whether all cookies should be accepted or writing cookies in a
- // third-party context is blocked.
- virtual void setAcceptAllCookies(bool) = 0;
-
- // The same as rewriteLayoutTestsURL unless the resource is a path starting
- // with /tmp/, then return a file URL to a temporary file.
- virtual std::string pathToLocalResource(const std::string& resource) = 0;
-
- // Sets the POSIX locale of the current process.
- virtual void setLocale(const std::string&) = 0;
-
- // Invoked when the test finished.
- virtual void testFinished() = 0;
-
- // Invoked when the embedder should close all but the main WebView.
- virtual void closeRemainingWindows() = 0;
-
- virtual void deleteAllCookies() = 0;
-
- // Returns the length of the back/forward history of the main WebView.
- virtual int navigationEntryCount() = 0;
-
- // The following trigger navigations on the main WebViwe.
- virtual void goToOffset(int offset) = 0;
- virtual void reload() = 0;
- virtual void loadURLForFrame(const blink::WebURL&, const std::string& frameName) = 0;
-
- // Returns true if resource requests to external URLs should be permitted.
- virtual bool allowExternalPages() = 0;
-
- // Returns a text dump the back/forward history for the WebView associated
- // with the given WebTestProxyBase.
- virtual std::string dumpHistoryForWindow(WebTestProxyBase*) = 0;
-};
-
-} // namespace content
-
-#endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBTESTDELEGATE_H_
« no previous file with comments | « content/shell/BUILD.gn ('k') | content/shell/renderer/test_runner/event_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698