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

Side by Side Diff: Source/modules/app_banner/AppBannerController.cpp

Issue 942913002: [AppBanner] Blink implementation of an event when an install banner is shown. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review comments Created 5 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "config.h"
6 #include "modules/app_banner/AppBannerController.h"
7
8 #include "core/EventTypeNames.h"
9 #include "core/frame/DOMWindow.h"
10 #include "core/frame/LocalFrame.h"
11 #include "modules/app_banner/BeforeInstallPromptEvent.h"
12 #include "platform/RuntimeEnabledFeatures.h"
13 #include "public/platform/modules/app_banner/WebAppBannerPromptReply.h"
14
15 namespace blink {
16
17 // static
18 void AppBannerController::willShowInstallBannerPrompt(LocalFrame* frame, const W ebString& platform, WebAppBannerPromptReply* reply)
19 {
20 ASSERT(RuntimeEnabledFeatures::appBannerEnabled());
21
22 // dispatchEvent() returns whether the default behavior can happen. In other
23 // words, it returns false if preventDefault() was called.
24 *reply = frame->domWindow()->dispatchEvent(BeforeInstallPromptEvent::create( EventTypeNames::beforeinstallprompt, platform))
25 ? WebAppBannerPromptReply::None : WebAppBannerPromptReply::Cancel;
26 }
27
28 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698