OLD | NEW |
(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 |
OLD | NEW |