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

Unified Diff: content/shell/renderer/test_runner/WebTestInterfaces.cpp

Issue 110533009: Import TestRunner library into chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 7 years 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
Index: content/shell/renderer/test_runner/WebTestInterfaces.cpp
diff --git a/content/shell/renderer/test_runner/WebTestInterfaces.cpp b/content/shell/renderer/test_runner/WebTestInterfaces.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..692c858510492c9811cc5f311e438438bdd2688f
--- /dev/null
+++ b/content/shell/renderer/test_runner/WebTestInterfaces.cpp
@@ -0,0 +1,92 @@
+// 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.
+
+#include "content/shell/renderer/test_runner/WebTestInterfaces.h"
+
+#include "content/shell/renderer/test_runner/MockWebAudioDevice.h"
+#include "content/shell/renderer/test_runner/MockWebMIDIAccessor.h"
+#include "content/shell/renderer/test_runner/MockWebMediaStreamCenter.h"
+#include "content/shell/renderer/test_runner/MockWebRTCPeerConnectionHandler.h"
+#include "content/shell/renderer/test_runner/TestInterfaces.h"
+#include "content/shell/renderer/test_runner/TestRunner.h"
+
+using namespace blink;
+
+namespace WebTestRunner {
+
+WebTestInterfaces::WebTestInterfaces()
+ : m_interfaces(new TestInterfaces())
+{
+}
+
+WebTestInterfaces::~WebTestInterfaces()
+{
+}
+
+void WebTestInterfaces::setWebView(WebView* webView, WebTestProxyBase* proxy)
+{
+ m_interfaces->setWebView(webView, proxy);
+}
+
+void WebTestInterfaces::setDelegate(WebTestDelegate* delegate)
+{
+ m_interfaces->setDelegate(delegate);
+}
+
+void WebTestInterfaces::bindTo(WebFrame* frame)
+{
+ m_interfaces->bindTo(frame);
+}
+
+void WebTestInterfaces::resetAll()
+{
+ m_interfaces->resetAll();
+}
+
+void WebTestInterfaces::setTestIsRunning(bool running)
+{
+ m_interfaces->setTestIsRunning(running);
+}
+
+void WebTestInterfaces::configureForTestWithURL(const WebURL& testURL, bool generatePixels)
+{
+ m_interfaces->configureForTestWithURL(testURL, generatePixels);
+}
+
+WebTestRunner* WebTestInterfaces::testRunner()
+{
+ return m_interfaces->testRunner();
+}
+
+WebThemeEngine* WebTestInterfaces::themeEngine()
+{
+ return m_interfaces->themeEngine();
+}
+
+TestInterfaces* WebTestInterfaces::testInterfaces()
+{
+ return m_interfaces.get();
+}
+
+WebMediaStreamCenter* WebTestInterfaces::createMediaStreamCenter(WebMediaStreamCenterClient* client)
+{
+ return new MockWebMediaStreamCenter(client);
+}
+
+WebRTCPeerConnectionHandler* WebTestInterfaces::createWebRTCPeerConnectionHandler(WebRTCPeerConnectionHandlerClient* client)
+{
+ return new MockWebRTCPeerConnectionHandler(client, m_interfaces.get());
+}
+
+WebMIDIAccessor* WebTestInterfaces::createMIDIAccessor(WebMIDIAccessorClient* client)
+{
+ return new MockWebMIDIAccessor(client, m_interfaces.get());
+}
+
+WebAudioDevice* WebTestInterfaces::createAudioDevice(double sampleRate)
+{
+ return new MockWebAudioDevice(sampleRate);
+}
+
+}
« no previous file with comments | « content/shell/renderer/test_runner/WebTestInterfaces.h ('k') | content/shell/renderer/test_runner/WebTestProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698