| Index: public/web/WebLocalFrame.h
|
| diff --git a/public/web/WebLocalFrame.h b/public/web/WebLocalFrame.h
|
| index adc667b980c582ee0a97628f6951b747dfbd9bd0..f678600c0963908f5fc99cdeb0faebb8f2d22e70 100644
|
| --- a/public/web/WebLocalFrame.h
|
| +++ b/public/web/WebLocalFrame.h
|
| @@ -9,6 +9,7 @@
|
|
|
| namespace blink {
|
|
|
| +enum class WebAppBannerPromptReply;
|
| enum class WebSandboxFlags;
|
| class WebAutofillClient;
|
| class WebContentSettingsClient;
|
| @@ -112,6 +113,13 @@ public:
|
| // Content Settings -------------------------------------------------------
|
|
|
| virtual void setContentSettingsClient(WebContentSettingsClient*) = 0;
|
| +
|
| + // App banner -------------------------------------------------------------
|
| +
|
| + // Request to show an application install banner for the given |platform|.
|
| + // The implementation can request the embedder to cancel the call by setting
|
| + // |cancel| to true.
|
| + virtual void willShowInstallBannerPrompt(const WebString& platform, WebAppBannerPromptReply*) = 0;
|
| };
|
|
|
| } // namespace blink
|
|
|