OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_PERMISSION_INFOBAR_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_PERMISSION_INFOBAR_DELEGATE_H_ |
6 #define CHROME_BROWSER_CONTENT_SETTINGS_PERMISSION_INFOBAR_DELEGATE_H_ | 6 #define CHROME_BROWSER_CONTENT_SETTINGS_PERMISSION_INFOBAR_DELEGATE_H_ |
7 | 7 |
8 #include "chrome/browser/content_settings/permission_request_id.h" | 8 #include "chrome/browser/content_settings/permission_request_id.h" |
9 #include "chrome/browser/infobars/infobar_service.h" | 9 #include "chrome/browser/infobars/infobar_service.h" |
10 #include "chrome/common/content_settings_types.h" | |
10 #include "components/infobars/core/confirm_infobar_delegate.h" | 11 #include "components/infobars/core/confirm_infobar_delegate.h" |
11 #include "content/public/browser/web_contents.h" | 12 #include "content/public/browser/web_contents.h" |
12 | 13 |
13 class NavigationDetails; | 14 class NavigationDetails; |
14 class PermissionQueueController; | 15 class PermissionQueueController; |
15 | 16 |
16 // Base class for permission infobars, it implements the default behavior | 17 // Base class for permission infobars, it implements the default behavior |
17 // so that the accept/deny buttons grant/deny the relevant permission. | 18 // so that the accept/deny buttons grant/deny the relevant permission. |
18 // A basic implementor only needs to implement the methods that | 19 // A basic implementor only needs to implement the methods that |
19 // provide an icon and a message text to the infobar. | 20 // provide an icon and a message text to the infobar. |
20 class PermissionInfobarDelegate : public ConfirmInfoBarDelegate { | 21 class PermissionInfobarDelegate : public ConfirmInfoBarDelegate { |
21 | 22 |
22 protected: | 23 protected: |
23 PermissionInfobarDelegate(PermissionQueueController* controller, | 24 PermissionInfobarDelegate(PermissionQueueController* controller, |
24 const PermissionRequestID& id, | 25 const PermissionRequestID& id, |
25 const GURL& requesting_origin); | 26 const GURL& requesting_origin, |
27 ContentSettingsType type); | |
26 virtual ~PermissionInfobarDelegate(); | 28 virtual ~PermissionInfobarDelegate(); |
27 | 29 |
28 // ConfirmInfoBarDelegate: | 30 // ConfirmInfoBarDelegate: |
29 virtual base::string16 GetMessageText() const = 0; | 31 virtual base::string16 GetMessageText() const = 0; |
30 | 32 |
31 virtual void InfoBarDismissed() OVERRIDE; | |
32 virtual infobars::InfoBarDelegate::Type GetInfoBarType() const OVERRIDE; | 33 virtual infobars::InfoBarDelegate::Type GetInfoBarType() const OVERRIDE; |
33 virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE; | 34 virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE; |
35 | |
36 // Remember to call RegisterActionTaken for these methods if you are | |
37 // overriding them. | |
38 virtual void InfoBarDismissed() OVERRIDE; | |
34 virtual bool Accept() OVERRIDE; | 39 virtual bool Accept() OVERRIDE; |
35 virtual bool Cancel() OVERRIDE; | 40 virtual bool Cancel() OVERRIDE; |
36 | 41 |
42 void RegisterActionTaken() {action_taken_ = true; } | |
Bernhard Bauer
2014/07/14 15:22:15
Nit: space before brace, and empty line.
Miguel Garcia
2014/07/14 16:57:50
Done and moved it to protected too
| |
37 private: | 43 private: |
38 void SetPermission(bool update_content_setting, bool allowed); | 44 void SetPermission(bool update_content_setting, bool allowed); |
39 | 45 |
40 PermissionQueueController* controller_; // not owned by us | 46 PermissionQueueController* controller_; // not owned by us |
41 const PermissionRequestID id_; | 47 const PermissionRequestID id_; |
42 GURL requesting_origin_; | 48 GURL requesting_origin_; |
49 bool action_taken_; | |
50 ContentSettingsType type_; | |
43 | 51 |
44 DISALLOW_COPY_AND_ASSIGN(PermissionInfobarDelegate); | 52 DISALLOW_COPY_AND_ASSIGN(PermissionInfobarDelegate); |
45 }; | 53 }; |
46 | 54 |
47 #endif // CHROME_BROWSER_CONTENT_SETTINGS_PERMISSION_INFOBAR_DELEGATE_H_ | 55 #endif // CHROME_BROWSER_CONTENT_SETTINGS_PERMISSION_INFOBAR_DELEGATE_H_ |
OLD | NEW |