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

Unified Diff: components/test_runner/web_test_proxy.cc

Issue 1886103002: Move DumpBackForwardLists out of WebTestProxyBase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@separate-layout-and-paint-async-then
Patch Set: Rebasing... Created 4 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 | « components/test_runner/web_test_proxy.h ('k') | content/shell/renderer/layout_test/blink_test_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/web_test_proxy.cc
diff --git a/components/test_runner/web_test_proxy.cc b/components/test_runner/web_test_proxy.cc
index 013c696efa601031f04c8529d2657f1ae47cdfee..75298ccacf2a7cb1a74de55f6fe0f2e4ca2cd025 100644
--- a/components/test_runner/web_test_proxy.cc
+++ b/components/test_runner/web_test_proxy.cc
@@ -15,20 +15,6 @@
namespace test_runner {
-namespace {
-
-std::string DumpAllBackForwardLists(TestInterfaces* interfaces,
- WebTestDelegate* delegate) {
- std::string result;
- const std::vector<WebTestProxyBase*>& window_list =
- interfaces->GetWindowList();
- for (size_t i = 0; i < window_list.size(); ++i)
- result.append(delegate->DumpHistoryForWindow(window_list.at(i)));
- return result;
-}
-
-} // namespace
-
WebTestProxyBase::WebTestProxyBase()
: test_interfaces_(nullptr),
delegate_(nullptr),
@@ -44,10 +30,6 @@ void WebTestProxyBase::SetInterfaces(WebTestInterfaces* interfaces) {
test_interfaces_->WindowOpened(this);
}
-std::string WebTestProxyBase::DumpBackForwardLists() {
- return DumpAllBackForwardLists(test_interfaces_, delegate_);
-}
-
void WebTestProxyBase::GetScreenOrientationForTesting(
blink::WebScreenInfo& screen_info) {
MockScreenOrientationClient* mock_client =
« no previous file with comments | « components/test_runner/web_test_proxy.h ('k') | content/shell/renderer/layout_test/blink_test_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698