| Index: components/test_runner/test_interfaces.cc
|
| diff --git a/components/test_runner/test_interfaces.cc b/components/test_runner/test_interfaces.cc
|
| index d28293252be849740ba1132366dcd2cd33e72e1e..99a5d3f9a1868c674852cae105b68afbf0909f76 100644
|
| --- a/components/test_runner/test_interfaces.cc
|
| +++ b/components/test_runner/test_interfaces.cc
|
| @@ -13,7 +13,6 @@
|
| #include "base/logging.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "base/values.h"
|
| -#include "components/test_runner/app_banner_client.h"
|
| #include "components/test_runner/gamepad_controller.h"
|
| #include "components/test_runner/gc_controller.h"
|
| #include "components/test_runner/test_runner.h"
|
| @@ -29,7 +28,6 @@ namespace test_runner {
|
| TestInterfaces::TestInterfaces()
|
| : test_runner_(new TestRunner(this)),
|
| delegate_(nullptr),
|
| - app_banner_client_(nullptr),
|
| main_view_(nullptr) {
|
| blink::setLayoutTestMode(true);
|
| // NOTE: please don't put feature specific enable flags here,
|
| @@ -117,10 +115,6 @@ void TestInterfaces::ConfigureForTestWithURL(const blink::WebURL& test_url,
|
| test_runner_->set_is_web_platform_tests_mode();
|
| }
|
|
|
| -void TestInterfaces::SetAppBannerClient(AppBannerClient* app_banner_client) {
|
| - app_banner_client_ = app_banner_client;
|
| -}
|
| -
|
| void TestInterfaces::WindowOpened(WebViewTestProxyBase* proxy) {
|
| window_list_.push_back(proxy);
|
| }
|
| @@ -158,8 +152,4 @@ blink::WebThemeEngine* TestInterfaces::GetThemeEngine() {
|
| return theme_engine_.get();
|
| }
|
|
|
| -AppBannerClient* TestInterfaces::GetAppBannerClient() {
|
| - return app_banner_client_;
|
| -}
|
| -
|
| } // namespace test_runner
|
|
|