Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "modules/app_banner/AppBannerController.h" | 5 #include "modules/app_banner/AppBannerController.h" |
| 6 | 6 |
| 7 #include "core/EventTypeNames.h" | 7 #include "core/EventTypeNames.h" |
| 8 #include "core/dom/Document.h" | 8 #include "core/dom/Document.h" |
| 9 #include "core/frame/DOMWindow.h" | 9 #include "core/frame/DOMWindow.h" |
| 10 #include "core/frame/LocalFrame.h" | 10 #include "core/frame/LocalFrame.h" |
| 11 #include "modules/app_banner/BeforeInstallPromptEvent.h" | 11 #include "modules/app_banner/BeforeInstallPromptEvent.h" |
| 12 #include "public/platform/WebVector.h" | 12 #include "mojo/public/cpp/bindings/strong_binding.h" |
| 13 #include "public/platform/modules/app_banner/WebAppBannerClient.h" | 13 #include "platform/weborigin/KURL.h" |
| 14 #include "public/platform/modules/app_banner/WebAppBannerPromptReply.h" | 14 #include "platform/weborigin/Referrer.h" |
| 15 #include "platform/weborigin/SecurityPolicy.h" | |
| 16 #include "wtf/text/WTFString.h" | |
| 17 #include <memory> | |
| 18 #include <utility> | |
| 15 | 19 |
| 16 namespace blink { | 20 namespace blink { |
| 17 | 21 |
| 18 // static | 22 AppBannerController::AppBannerController(LocalFrame* frame) : m_frame(frame) {} |
| 19 void AppBannerController::willShowInstallBannerPrompt( | 23 |
| 20 int requestId, | 24 void AppBannerController::create( |
| 21 WebAppBannerClient* client, | |
| 22 LocalFrame* frame, | 25 LocalFrame* frame, |
|
dcheng
2016/10/19 06:15:58
I don't think we'll ever pass in a non-null |frame
dominickn
2016/10/19 08:16:59
This method is invoked by WTF::bind. Can it take a
| |
| 23 const WebVector<WebString>& platforms, | 26 mojom::blink::AppBannerControllerRequest request) { |
| 24 WebAppBannerPromptReply* reply) { | 27 if (!frame) |
| 25 Vector<String> wtfPlatforms; | 28 return; |
| 26 for (const WebString& platform : platforms) | |
| 27 wtfPlatforms.append(platform); | |
| 28 | 29 |
| 29 // dispatchEvent() returns whether the default behavior can happen. In other | 30 mojo::MakeStrongBinding( |
| 30 // words, it returns false if preventDefault() was called. | 31 std::unique_ptr<AppBannerController>(new AppBannerController(frame)), |
|
dcheng
2016/10/19 06:15:58
Nit: wrapUnique from wtf/PtrUtil.h
dominickn
2016/10/19 08:16:59
Done.
| |
| 31 *reply = | 32 std::move(request)); |
| 32 frame->domWindow()->dispatchEvent(BeforeInstallPromptEvent::create( | 33 } |
| 33 EventTypeNames::beforeinstallprompt, frame->document(), wtfPlatforms, | 34 |
| 34 requestId, client)) == DispatchEventResult::NotCanceled | 35 void AppBannerController::BannerPromptRequest( |
| 35 ? WebAppBannerPromptReply::None | 36 mojom::blink::AppBannerServicePtr servicePtr, |
| 36 : WebAppBannerPromptReply::Cancel; | 37 mojom::blink::AppBannerEventRequest eventRequest, |
| 38 const Vector<String>& platforms, | |
| 39 const BannerPromptRequestCallback& callback) { | |
| 40 if (!m_frame) { | |
| 41 callback.Run(mojom::blink::AppBannerPromptReply::NONE, ""); | |
| 42 return; | |
| 43 } | |
| 44 | |
| 45 mojom::AppBannerPromptReply reply = | |
| 46 m_frame->domWindow()->dispatchEvent(BeforeInstallPromptEvent::create( | |
| 47 EventTypeNames::beforeinstallprompt, m_frame, std::move(servicePtr), | |
| 48 std::move(eventRequest), platforms)) == | |
| 49 DispatchEventResult::NotCanceled | |
| 50 ? mojom::AppBannerPromptReply::NONE | |
| 51 : mojom::AppBannerPromptReply::CANCEL; | |
| 52 | |
| 53 AtomicString referrer = SecurityPolicy::generateReferrer( | |
| 54 m_frame->document()->getReferrerPolicy(), KURL(), | |
| 55 m_frame->document()->outgoingReferrer()) | |
| 56 .referrer; | |
| 57 | |
| 58 callback.Run(reply, referrer.isNull() ? emptyString() : referrer); | |
| 37 } | 59 } |
| 38 | 60 |
| 39 } // namespace blink | 61 } // namespace blink |
| OLD | NEW |