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

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: Created 5 years, 10 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
14 namespace blink {
15
16 // static
17 void AppBannerController::willShowInstallBannerPrompt(LocalFrame* frame, const W ebString& platform, bool* cancel)
18 {
19 ASSERT(RuntimeEnabledFeatures::appBannerEnabled());
20
21 // dispatchEvent() returns whether the default behavior can happen. In other
22 // words, it returns false if preventDefault() was called.
23 *cancel = !frame->domWindow()->dispatchEvent(BeforeInstallPromptEvent::creat e(EventTypeNames::beforeinstallprompt, platform));
24 }
25
26 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698