Move Webstore URL concepts to //extensions and out
[chromium-blink-merge.git] / chrome / browser / services / gcm / push_messaging_infobar_delegate.h
blob0fcb547310d6286d4e61f0def8d6cce29c4aa2c1
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_SERVICES_GCM_PUSH_MESSAGING_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_INFOBAR_DELEGATE_H_
8 #include "chrome/browser/content_settings/permission_infobar_delegate.h"
9 #include "components/content_settings/core/common/content_settings_types.h"
11 class GURL;
12 class InfoBarService;
14 namespace gcm {
16 // Delegate to allow GCM push messages registration.
17 class PushMessagingInfoBarDelegate : public PermissionInfobarDelegate {
18 public:
20 // Creates a Push Permission infobar and delegate and adds the infobar to
21 // |infobar_service|. Returns the infobar if it was successfully added.
22 static infobars::InfoBar* Create(InfoBarService* infobar_service,
23 PermissionQueueController* controller,
24 const PermissionRequestID& id,
25 const GURL& requesting_frame,
26 const std::string& display_languages,
27 ContentSettingsType type);
29 private:
30 PushMessagingInfoBarDelegate(PermissionQueueController* controller,
31 const PermissionRequestID& id,
32 const GURL& requesting_frame,
33 const std::string& display_languages,
34 ContentSettingsType type);
35 virtual ~PushMessagingInfoBarDelegate();
37 // ConfirmInfoBarDelegate:
38 virtual base::string16 GetMessageText() const OVERRIDE;
39 virtual int GetIconID() const OVERRIDE;
41 const GURL requesting_origin_;
42 const std::string display_languages_;
44 DISALLOW_COPY_AND_ASSIGN(PushMessagingInfoBarDelegate);
47 } // namespace gcm
48 #endif // CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_INFOBAR_DELEGATE_H_