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

Side by Side Diff: chrome/browser/media/protected_media_identifier_infobar_delegate.h

Issue 1332293002: permissions: switch from explicitly passing queue controller to callbacks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unecessary includes Created 5 years, 3 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_MEDIA_PROTECTED_MEDIA_IDENTIFIER_INFOBAR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_MEDIA_PROTECTED_MEDIA_IDENTIFIER_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_MEDIA_PROTECTED_MEDIA_IDENTIFIER_INFOBAR_DELEGATE_H_ 6 #define CHROME_BROWSER_MEDIA_PROTECTED_MEDIA_IDENTIFIER_INFOBAR_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h"
mlamouri (slow - plz ping) 2015/09/15 12:55:59 Use callback_forward.h
Lalit Maganti 2015/09/15 13:16:53 ATM I can't because I store a callback but if I do
Lalit Maganti 2015/09/15 14:19:24 Done.
10 #include "chrome/browser/permissions/permission_request_id.h" 11 #include "chrome/browser/permissions/permission_request_id.h"
11 #include "components/infobars/core/confirm_infobar_delegate.h" 12 #include "components/infobars/core/confirm_infobar_delegate.h"
12 #include "url/gurl.h" 13 #include "url/gurl.h"
13 14
14 class PermissionQueueController;
15 class InfoBarService; 15 class InfoBarService;
16 16
17 // TODO(toyoshim): Much more code can be shared with GeolocationInfoBarDelegate. 17 // TODO(toyoshim): Much more code can be shared with GeolocationInfoBarDelegate.
18 // http://crbug.com/266743 18 // http://crbug.com/266743
19 19
20 class ProtectedMediaIdentifierInfoBarDelegate : public ConfirmInfoBarDelegate { 20 class ProtectedMediaIdentifierInfoBarDelegate : public ConfirmInfoBarDelegate {
21 public: 21 public:
22 // Creates a protected media identifier infobar and delegate and adds the 22 // Creates a protected media identifier infobar and delegate and adds the
23 // infobar to |infobar_service|. Returns the infobar if it was successfully 23 // infobar to |infobar_service|. Returns the infobar if it was successfully
24 // added. 24 // added.
25 static infobars::InfoBar* Create(InfoBarService* infobar_service, 25 static infobars::InfoBar* Create(
26 PermissionQueueController* controller, 26 InfoBarService* infobar_service,
27 const PermissionRequestID& id, 27 const PermissionRequestID& id,
28 const GURL& requesting_frame, 28 const GURL& requesting_frame,
29 const std::string& display_languages); 29 const std::string& display_languages,
30 const base::Callback<void(bool, bool)>& callback);
30 31
31 protected: 32 protected:
32 ProtectedMediaIdentifierInfoBarDelegate(PermissionQueueController* controller, 33 ProtectedMediaIdentifierInfoBarDelegate(
33 const PermissionRequestID& id, 34 const PermissionRequestID& id,
34 const GURL& requesting_frame, 35 const GURL& requesting_frame,
35 const std::string& display_languages); 36 const std::string& display_languages,
37 const base::Callback<void(bool, bool)>& callback);
36 ~ProtectedMediaIdentifierInfoBarDelegate() override; 38 ~ProtectedMediaIdentifierInfoBarDelegate() override;
37 39
38 // Calls back to the controller to inform it of the user's decision. 40 // Calls back to the controller to inform it of the user's decision.
39 void SetPermission(bool update_content_setting, bool allowed); 41 void SetPermission(bool update_content_setting, bool allowed);
40 42
41 private: 43 private:
42 // ConfirmInfoBarDelegate: 44 // ConfirmInfoBarDelegate:
43 Type GetInfoBarType() const override; 45 Type GetInfoBarType() const override;
44 int GetIconId() const override; 46 int GetIconId() const override;
45 void InfoBarDismissed() override; 47 void InfoBarDismissed() override;
46 base::string16 GetMessageText() const override; 48 base::string16 GetMessageText() const override;
47 base::string16 GetButtonLabel(InfoBarButton button) const override; 49 base::string16 GetButtonLabel(InfoBarButton button) const override;
48 bool Accept() override; 50 bool Accept() override;
49 bool Cancel() override; 51 bool Cancel() override;
50 base::string16 GetLinkText() const override; 52 base::string16 GetLinkText() const override;
51 bool LinkClicked(WindowOpenDisposition disposition) override; 53 bool LinkClicked(WindowOpenDisposition disposition) override;
52 54
53 PermissionQueueController* controller_;
54 const PermissionRequestID id_; 55 const PermissionRequestID id_;
55 GURL requesting_frame_; 56 GURL requesting_frame_;
56 std::string display_languages_; 57 std::string display_languages_;
58 const base::Callback<void(bool, bool)> callback_;
57 59
58 DISALLOW_COPY_AND_ASSIGN(ProtectedMediaIdentifierInfoBarDelegate); 60 DISALLOW_COPY_AND_ASSIGN(ProtectedMediaIdentifierInfoBarDelegate);
59 }; 61 };
60 62
61 #endif // CHROME_BROWSER_MEDIA_PROTECTED_MEDIA_IDENTIFIER_INFOBAR_DELEGATE_H_ 63 #endif // CHROME_BROWSER_MEDIA_PROTECTED_MEDIA_IDENTIFIER_INFOBAR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698