Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: chrome/browser/services/gcm/permission_infobar_delegate.h

Issue 343743004: Implement a permission check for push. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
5 #ifndef CHROME_BROWSER_SERVICES_GCM_PERMISSION_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_SERVICES_GCM_PERMISSION_INFOBAR_DELEGATE_H_
7
8 #include "chrome/browser/content_settings/permission_request_id.h"
9 #include "chrome/browser/infobars/infobar_service.h"
10 #include "components/infobars/core/confirm_infobar_delegate.h"
11 #include "content/public/browser/web_contents.h"
12
13 class GURL;
14 class NavigationDetails;
15 class PermissionQueueController;
16
17 namespace gcm {
18
19 // Base class for permission infobars, it implements the default behaviour
20 // so that the accept/deny buttons grant/deny the relevant permission.
21 // A basic implementor only needs to implement the methods that
22 // provide an incon and a message text to the infobar.
23 class PermissionInfobarDelegate : public ConfirmInfoBarDelegate {
24 public:
25 virtual ~PermissionInfobarDelegate();
26
27 protected:
28 PermissionInfobarDelegate(PermissionQueueController* controller,
29 const PermissionRequestID& id,
30 GURL& requesting_frame);
31
32 // ConfirmInfoBarDelegate:
33 virtual void InfoBarDismissed() OVERRIDE;
34 virtual infobars::InfoBarDelegate::Type GetInfoBarType() const OVERRIDE;
35 virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
36 virtual bool Accept() OVERRIDE;
37 virtual bool Cancel() OVERRIDE;
38
39 private:
40 void SetPermission(bool update_content_setting, bool allowed);
41
42 PermissionQueueController* controller_;
43 const PermissionRequestID id_;
44 GURL requesting_frame_;
45 DISALLOW_COPY_AND_ASSIGN(PermissionInfobarDelegate);
46 };
47
48 } // namespace gcm
49 #endif // CHROME_BROWSER_SERVICES_GCM_PERMISSION_INFOBAR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698