| Index: components/test_runner/test_interfaces.cc
|
| diff --git a/components/test_runner/test_interfaces.cc b/components/test_runner/test_interfaces.cc
|
| index 49d88a98977f3dbd429c5ed4233fede7ec0898bc..e5f0c0762b1bf9dc8272b4d79616ec75425ba7b2 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,
|
| @@ -118,10 +116,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);
|
| }
|
| @@ -159,8 +153,4 @@ blink::WebThemeEngine* TestInterfaces::GetThemeEngine() {
|
| return theme_engine_.get();
|
| }
|
|
|
| -AppBannerClient* TestInterfaces::GetAppBannerClient() {
|
| - return app_banner_client_;
|
| -}
|
| -
|
| } // namespace test_runner
|
|
|