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

Side by Side Diff: chrome/browser/permissions/permission_request_impl.h

Issue 2675483002: Replace PermissionType in chrome/ with ContentSettingsType (Closed)
Patch Set: rebase + include content_settings_types.h more Created 3 years, 10 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
OLDNEW
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_PERMISSIONS_PERMISSION_REQUEST_IMPL_H_ 5 #ifndef CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_IMPL_H_
6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_IMPL_H_ 6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_IMPL_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "chrome/browser/permissions/permission_request.h" 10 #include "chrome/browser/permissions/permission_request.h"
11 #include "chrome/browser/permissions/permission_request_id.h" 11 #include "chrome/browser/permissions/permission_request_id.h"
12 #include "components/content_settings/core/common/content_settings.h" 12 #include "components/content_settings/core/common/content_settings.h"
13 #include "content/public/browser/permission_type.h" 13 #include "components/content_settings/core/common/content_settings_types.h"
14 14
15 class GURL; 15 class GURL;
16 class Profile; 16 class Profile;
17 17
18 // Default implementation of PermissionRequest, it is assumed that the 18 // Default implementation of PermissionRequest, it is assumed that the
19 // caller owns it and that it can be deleted once the |delete_callback| 19 // caller owns it and that it can be deleted once the |delete_callback|
20 // is executed. 20 // is executed.
21 class PermissionRequestImpl : public PermissionRequest { 21 class PermissionRequestImpl : public PermissionRequest {
22 public: 22 public:
23 using PermissionDecidedCallback = base::Callback<void(bool, ContentSetting)>; 23 using PermissionDecidedCallback = base::Callback<void(bool, ContentSetting)>;
24 24
25 PermissionRequestImpl( 25 PermissionRequestImpl(
26 const GURL& request_origin, 26 const GURL& request_origin,
27 content::PermissionType permission_type, 27 ContentSettingsType content_settings_type,
28 Profile* profile, 28 Profile* profile,
29 bool has_gesture, 29 bool has_gesture,
30 const PermissionDecidedCallback& permission_decided_callback, 30 const PermissionDecidedCallback& permission_decided_callback,
31 const base::Closure delete_callback); 31 const base::Closure delete_callback);
32 32
33 ~PermissionRequestImpl() override; 33 ~PermissionRequestImpl() override;
34 34
35 protected: 35 protected:
36 void RegisterActionTaken() { action_taken_ = true; } 36 void RegisterActionTaken() { action_taken_ = true; }
37 37
38 private: 38 private:
39 // PermissionRequest: 39 // PermissionRequest:
40 IconId GetIconId() const override; 40 IconId GetIconId() const override;
41 base::string16 GetMessageTextFragment() const override; 41 base::string16 GetMessageTextFragment() const override;
42 GURL GetOrigin() const override; 42 GURL GetOrigin() const override;
43 // Remember to call RegisterActionTaken for these methods if you are 43 // Remember to call RegisterActionTaken for these methods if you are
44 // overriding them. 44 // overriding them.
45 void PermissionGranted() override; 45 void PermissionGranted() override;
46 void PermissionDenied() override; 46 void PermissionDenied() override;
47 void Cancelled() override; 47 void Cancelled() override;
48 void RequestFinished() override; 48 void RequestFinished() override;
49 bool ShouldShowPersistenceToggle() const override; 49 bool ShouldShowPersistenceToggle() const override;
50 PermissionRequestType GetPermissionRequestType() const override; 50 PermissionRequestType GetPermissionRequestType() const override;
51 PermissionRequestGestureType GetGestureType() const override; 51 PermissionRequestGestureType GetGestureType() const override;
52 ContentSettingsType GetContentSettingsType() const override;
53 52
54 GURL request_origin_; 53 GURL request_origin_;
55 content::PermissionType permission_type_; 54 ContentSettingsType content_settings_type_;
56 Profile* profile_; 55 Profile* profile_;
57 bool has_gesture_; 56 bool has_gesture_;
58 57
59 // Called once a decision is made about the permission. 58 // Called once a decision is made about the permission.
60 const PermissionDecidedCallback permission_decided_callback_; 59 const PermissionDecidedCallback permission_decided_callback_;
61 60
62 // Called when the request is no longer in use so it can be deleted by the 61 // Called when the request is no longer in use so it can be deleted by the
63 // caller. 62 // caller.
64 const base::Closure delete_callback_; 63 const base::Closure delete_callback_;
65 bool is_finished_; 64 bool is_finished_;
66 bool action_taken_; 65 bool action_taken_;
67 66
68 DISALLOW_COPY_AND_ASSIGN(PermissionRequestImpl); 67 DISALLOW_COPY_AND_ASSIGN(PermissionRequestImpl);
69 }; 68 };
70 69
71 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_IMPL_H_ 70 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/permissions/permission_request.h ('k') | chrome/browser/permissions/permission_request_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698