Changes for start_with_ext Telemetry test to work on Windows.
[chromium-blink-merge.git] / chrome / browser / permissions / permission_infobar_delegate.h
blob14a2fe8cfabeda3336ee755029bc08c499354a91
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_PERMISSIONS_PERMISSION_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_INFOBAR_DELEGATE_H_
8 #include "chrome/browser/infobars/infobar_service.h"
9 #include "chrome/browser/permissions/permission_request_id.h"
10 #include "components/content_settings/core/common/content_settings_types.h"
11 #include "components/infobars/core/confirm_infobar_delegate.h"
12 #include "content/public/browser/web_contents.h"
14 class NavigationDetails;
15 class PermissionQueueController;
17 // Base class for permission infobars, it implements the default behavior
18 // so that the accept/deny buttons grant/deny the relevant permission.
19 // A basic implementor only needs to implement the methods that
20 // provide an icon and a message text to the infobar.
21 class PermissionInfobarDelegate : public ConfirmInfoBarDelegate {
23 public:
24 ContentSettingsType content_setting() const { return type_; }
26 protected:
27 PermissionInfobarDelegate(PermissionQueueController* controller,
28 const PermissionRequestID& id,
29 const GURL& requesting_origin,
30 ContentSettingsType type);
31 ~PermissionInfobarDelegate() override;
33 private:
34 // ConfirmInfoBarDelegate:
35 Type GetInfoBarType() const override;
36 void InfoBarDismissed() override;
37 PermissionInfobarDelegate* AsPermissionInfobarDelegate() override;
38 base::string16 GetButtonLabel(InfoBarButton button) const override;
39 bool Accept() override;
40 bool Cancel() override;
42 void SetPermission(bool update_content_setting, bool allowed);
44 PermissionQueueController* controller_; // not owned by us
45 const PermissionRequestID id_;
46 GURL requesting_origin_;
47 bool action_taken_;
48 ContentSettingsType type_;
50 DISALLOW_COPY_AND_ASSIGN(PermissionInfobarDelegate);
53 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_INFOBAR_DELEGATE_H_