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

Unified Diff: content/shell/test_runner/web_test_interfaces.cc

Issue 2707183003: Move //components/test_runner back into //content/shell (Closed)
Patch Set: Trim DEPS Created 3 years, 10 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
Index: content/shell/test_runner/web_test_interfaces.cc
diff --git a/components/test_runner/web_test_interfaces.cc b/content/shell/test_runner/web_test_interfaces.cc
similarity index 80%
rename from components/test_runner/web_test_interfaces.cc
rename to content/shell/test_runner/web_test_interfaces.cc
index d7251ff3b95475a0563cd46c814e6aeeb6435f30..983af6597a955e1f909256aa6540edaa045d8c15 100644
--- a/components/test_runner/web_test_interfaces.cc
+++ b/content/shell/test_runner/web_test_interfaces.cc
@@ -2,32 +2,30 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "components/test_runner/web_test_interfaces.h"
+#include "content/shell/test_runner/web_test_interfaces.h"
#include <utility>
#include "base/memory/ptr_util.h"
-#include "components/test_runner/mock_web_audio_device.h"
-#include "components/test_runner/mock_web_media_stream_center.h"
-#include "components/test_runner/mock_web_midi_accessor.h"
-#include "components/test_runner/mock_webrtc_peer_connection_handler.h"
-#include "components/test_runner/test_interfaces.h"
-#include "components/test_runner/test_runner.h"
-#include "components/test_runner/web_frame_test_client.h"
-#include "components/test_runner/web_view_test_client.h"
-#include "components/test_runner/web_view_test_proxy.h"
-#include "components/test_runner/web_widget_test_client.h"
-#include "components/test_runner/web_widget_test_proxy.h"
+#include "content/shell/test_runner/mock_web_audio_device.h"
+#include "content/shell/test_runner/mock_web_media_stream_center.h"
+#include "content/shell/test_runner/mock_web_midi_accessor.h"
+#include "content/shell/test_runner/mock_webrtc_peer_connection_handler.h"
+#include "content/shell/test_runner/test_interfaces.h"
+#include "content/shell/test_runner/test_runner.h"
+#include "content/shell/test_runner/web_frame_test_client.h"
+#include "content/shell/test_runner/web_view_test_client.h"
+#include "content/shell/test_runner/web_view_test_proxy.h"
+#include "content/shell/test_runner/web_widget_test_client.h"
+#include "content/shell/test_runner/web_widget_test_proxy.h"
using namespace blink;
namespace test_runner {
-WebTestInterfaces::WebTestInterfaces() : interfaces_(new TestInterfaces()) {
-}
+WebTestInterfaces::WebTestInterfaces() : interfaces_(new TestInterfaces()) {}
-WebTestInterfaces::~WebTestInterfaces() {
-}
+WebTestInterfaces::~WebTestInterfaces() {}
void WebTestInterfaces::SetMainView(WebView* web_view) {
interfaces_->SetMainView(web_view);

Powered by Google App Engine
This is Rietveld 408576698