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

Unified Diff: components/test_runner/test_interfaces.cc

Issue 2393513004: Convert app banners to use Mojo. (Closed)
Patch Set: Rebase Created 4 years, 2 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: 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

Powered by Google App Engine
This is Rietveld 408576698