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

Unified Diff: components/test_runner/app_banner_service.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/app_banner_service.h ('k') | components/test_runner/test_interfaces.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/app_banner_service.cc
diff --git a/components/test_runner/app_banner_service.cc b/components/test_runner/app_banner_service.cc
new file mode 100644
index 0000000000000000000000000000000000000000..37ce9d14ffff4b3ef0a670b3a99731948e227259
--- /dev/null
+++ b/components/test_runner/app_banner_service.cc
@@ -0,0 +1,45 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/test_runner/app_banner_service.h"
+
+namespace test_runner {
+
+AppBannerService::AppBannerService() : binding_(this) {}
+
+AppBannerService::~AppBannerService() {}
+
+void AppBannerService::ResolvePromise(const std::string& platform) {
+ if (!event_.is_bound())
+ return;
+
+ // Empty platform means to resolve as a dismissal.
+ if (platform.empty())
+ event_->BannerDismissed();
+ else
+ event_->BannerAccepted(platform);
+}
+
+void AppBannerService::SendBannerPromptRequest(
+ const std::vector<std::string>& platforms,
+ const base::Callback<void(bool)>& callback) {
+ if (!controller_.is_bound())
+ return;
+
+ controller_->BannerPromptRequest(
+ binding_.CreateInterfacePtrAndBind(), mojo::GetProxy(&event_), platforms,
+ base::Bind(&AppBannerService::OnBannerPromptReply, base::Unretained(this),
+ callback));
+}
+
+void AppBannerService::DisplayAppBanner() { /* do nothing */ }
+
+void AppBannerService::OnBannerPromptReply(
+ const base::Callback<void(bool)>& callback,
+ blink::mojom::AppBannerPromptReply reply,
+ const std::string& referrer) {
+ callback.Run(reply == blink::mojom::AppBannerPromptReply::CANCEL);
+}
+
+} // namespace test_runner
« no previous file with comments | « components/test_runner/app_banner_service.h ('k') | components/test_runner/test_interfaces.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698