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

Unified Diff: components/test_runner/test_interfaces.cc

Issue 2393513004: Convert app banners to use Mojo. (Closed)
Patch Set: Add TODO 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
« no previous file with comments | « components/test_runner/test_interfaces.h ('k') | components/test_runner/test_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « components/test_runner/test_interfaces.h ('k') | components/test_runner/test_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698