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

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

Issue 2443463003: Remove PermissionInfoBarDelegate from desktop builds. (Closed)
Patch Set: Add comment explaining lifetime Created 4 years, 1 month 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_MIDI_PERMISSION_INFOBAR_DELEGATE_ANDROID_H_ 5 #ifndef CHROME_BROWSER_MEDIA_MIDI_PERMISSION_INFOBAR_DELEGATE_ANDROID_H_
6 #define CHROME_BROWSER_MEDIA_MIDI_PERMISSION_INFOBAR_DELEGATE_ANDROID_H_ 6 #define CHROME_BROWSER_MEDIA_MIDI_PERMISSION_INFOBAR_DELEGATE_ANDROID_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "chrome/browser/permissions/permission_infobar_delegate.h" 11 #include "chrome/browser/permissions/permission_infobar_delegate.h"
12 12
13 class GURL;
14 class InfoBarService;
15
16 // MidiPermissionInfoBarDelegateAndroids are created by the 13 // MidiPermissionInfoBarDelegateAndroids are created by the
17 // MidiPermissionContext to control the display and handling of MIDI permission 14 // MidiPermissionContext to control the display and handling of MIDI permission
18 // infobars to the user. 15 // infobars to the user.
19 class MidiPermissionInfoBarDelegateAndroid : public PermissionInfoBarDelegate { 16 class MidiPermissionInfoBarDelegateAndroid : public PermissionInfoBarDelegate {
20 public: 17 public:
21 // Creates a MIDI permission infobar and delegate and adds the infobar to
22 // |infobar_service|. Returns the infobar if it was successfully added.
23 static infobars::InfoBar* Create(InfoBarService* infobar_service,
24 const GURL& requesting_frame,
25 bool user_gesture,
26 Profile* profile,
27 const PermissionSetCallback& callback);
28
29 private:
30 MidiPermissionInfoBarDelegateAndroid(const GURL& requesting_frame, 18 MidiPermissionInfoBarDelegateAndroid(const GURL& requesting_frame,
31 bool user_gesture, 19 bool user_gesture,
32 Profile* profile, 20 Profile* profile,
33 const PermissionSetCallback& callback); 21 const PermissionSetCallback& callback);
22
23 private:
34 ~MidiPermissionInfoBarDelegateAndroid() override; 24 ~MidiPermissionInfoBarDelegateAndroid() override;
35 25
36 // ConfirmInfoBarDelegate: 26 // ConfirmInfoBarDelegate:
37 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override; 27 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
38 int GetIconId() const override; 28 int GetIconId() const override;
39 int GetMessageResourceId() const override; 29 int GetMessageResourceId() const override;
40 30
41 DISALLOW_COPY_AND_ASSIGN(MidiPermissionInfoBarDelegateAndroid); 31 DISALLOW_COPY_AND_ASSIGN(MidiPermissionInfoBarDelegateAndroid);
42 }; 32 };
43 33
44 #endif // CHROME_BROWSER_MEDIA_MIDI_PERMISSION_INFOBAR_DELEGATE_ANDROID_H_ 34 #endif // CHROME_BROWSER_MEDIA_MIDI_PERMISSION_INFOBAR_DELEGATE_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698