| 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_SERVICES_GCM_PUSH_MESSAGING_INFOBAR_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_INFOBAR_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_INFOBAR_DELEGATE_H_ | 6 #define CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_INFOBAR_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/services/gcm/permission_infobar_delegate.h" | 8 #include "chrome/browser/content_settings/permission_infobar_delegate.h" |
| 9 | 9 |
| 10 class GURL; | 10 class GURL; |
| 11 class InfoBarService; | 11 class InfoBarService; |
| 12 | 12 |
| 13 namespace gcm { | 13 namespace gcm { |
| 14 | 14 |
| 15 // Delegate to allow GCM push messages registration. | 15 // Delegate to allow GCM push messages registration. |
| 16 class PushMessagingInfoBarDelegate : public PermissionInfobarDelegate { | 16 class PushMessagingInfoBarDelegate : public PermissionInfobarDelegate { |
| 17 public: | 17 public: |
| 18 virtual ~PushMessagingInfoBarDelegate(); | |
| 19 | 18 |
| 20 // Creates a Push Permission infobar and delegate and adds the infobar to | 19 // Creates a Push Permission infobar and delegate and adds the infobar to |
| 21 // |infobar_service|. Returns the infobar if it was successfully added. | 20 // |infobar_service|. Returns the infobar if it was successfully added. |
| 22 static infobars::InfoBar* Create(InfoBarService* infobar_service, | 21 static infobars::InfoBar* Create(InfoBarService* infobar_service, |
| 23 PermissionQueueController* controller, | 22 PermissionQueueController* controller, |
| 24 const PermissionRequestID& id, | 23 const PermissionRequestID& id, |
| 25 const GURL& requesting_frame, | 24 const GURL& requesting_frame, |
| 26 const std::string& display_languages); | 25 const std::string& display_languages); |
| 27 | 26 |
| 28 private: | 27 private: |
| 29 PushMessagingInfoBarDelegate(PermissionQueueController* controller, | 28 PushMessagingInfoBarDelegate(PermissionQueueController* controller, |
| 30 const PermissionRequestID& id, | 29 const PermissionRequestID& id, |
| 31 const GURL& requesting_frame, | 30 const GURL& requesting_frame, |
| 32 const std::string& display_languages); | 31 const std::string& display_languages); |
| 32 virtual ~PushMessagingInfoBarDelegate(); |
| 33 | 33 |
| 34 // ConfirmInfoBarDelegate: | 34 // ConfirmInfoBarDelegate: |
| 35 virtual base::string16 GetMessageText() const OVERRIDE; | 35 virtual base::string16 GetMessageText() const OVERRIDE; |
| 36 virtual int GetIconID() const OVERRIDE; |
| 36 | 37 |
| 37 const GURL requesting_origin_; | 38 const GURL requesting_origin_; |
| 38 const std::string display_languages_; | 39 const std::string display_languages_; |
| 39 | 40 |
| 40 DISALLOW_COPY_AND_ASSIGN(PushMessagingInfoBarDelegate); | 41 DISALLOW_COPY_AND_ASSIGN(PushMessagingInfoBarDelegate); |
| 41 }; | 42 }; |
| 42 | 43 |
| 43 } // namespace gcm | 44 } // namespace gcm |
| 44 #endif // CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_INFOBAR_DELEGATE_H_ | 45 #endif // CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_INFOBAR_DELEGATE_H_ |
| 45 | 46 |
| OLD | NEW |