1 // Copyright 2014 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.
5 #ifndef CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_PERMISSION_REQUEST_H_
6 #define CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_PERMISSION_REQUEST_H_
8 #include "chrome/browser/ui/website_settings/permission_bubble_request.h"
9 #include "chrome/common/custom_handlers/protocol_handler.h"
11 class ProtocolHandlerRegistry
;
13 // This class provides display data for a permission bubble request, shown when
14 // a page wants to register a protocol handler and was triggered by a user
16 class RegisterProtocolHandlerPermissionRequest
17 : public PermissionBubbleRequest
{
19 RegisterProtocolHandlerPermissionRequest(
20 ProtocolHandlerRegistry
* registry
,
21 const ProtocolHandler
& handler
,
24 ~RegisterProtocolHandlerPermissionRequest() override
;
26 // PermissionBubbleRequest:
27 int GetIconID() const override
;
28 base::string16
GetMessageText() const override
;
29 base::string16
GetMessageTextFragment() const override
;
30 bool HasUserGesture() const override
;
31 GURL
GetRequestingHostname() const override
;
32 void PermissionGranted() override
;
33 void PermissionDenied() override
;
34 void Cancelled() override
;
35 void RequestFinished() override
;
38 ProtocolHandlerRegistry
* registry_
;
39 ProtocolHandler handler_
;
43 DISALLOW_COPY_AND_ASSIGN(RegisterProtocolHandlerPermissionRequest
);
46 #endif // CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_PERMISSION_REQUEST_H_