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

Side by Side Diff: chrome/browser/media/webrtc/screen_capture_infobar_delegate_android.h

Issue 2123863004: ScreenCapture for Android phase1, part II (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add a new infobarDelegate for screen capture Created 4 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
(Empty)
1 // Copyright 2016 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_MEDIA_WEBRTC_SCREEN_CAPTURE_INFOBAR_DELEGATE_ANDROID_H_
6 #define CHROME_BROWSER_MEDIA_WEBRTC_SCREEN_CAPTURE_INFOBAR_DELEGATE_ANDROID_H_
7
8 #include "chrome/browser/media/media_access_handler.h"
9 #include "components/infobars/core/confirm_infobar_delegate.h"
10
11 namespace content {
12 class WebContents;
13 }
14
15 // This class configures an infobar shown when a page requests access to a
16 // user's device screen. The user is shown a message asking whether he wishes to
tsergeant 2016/09/19 23:27:02 Please try and avoid gender-specific pronouns in c
braveyao 2016/09/20 00:50:05 Done.
17 // share his screen with the current page, and buttons to give access to the
18 // screen to the page, or to deny access to it.
19 class ScreenCaptureInfoBarDelegateAndroid : public ConfirmInfoBarDelegate {
20 public:
21 typedef content::MediaResponseCallback ResponseCallback;
22
23 // Static method to create the object
24 static void Create(content::WebContents* web_contents,
25 const content::MediaStreamRequest& request,
26 const ResponseCallback& callback);
27
28 explicit ScreenCaptureInfoBarDelegateAndroid(
29 content::WebContents* web_contents,
30 const content::MediaStreamRequest& request,
31 const ResponseCallback& callback);
32 ~ScreenCaptureInfoBarDelegateAndroid() override;
33
34 // ConfirmInfoBarDelegate:
35 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
36 ScreenCaptureInfoBarDelegateAndroid* AsScreenCaptureInfoBarDelegateAndroid()
37 override;
38 base::string16 GetMessageText() const override;
39 int GetIconId() const override;
40 base::string16 GetButtonLabel(InfoBarButton button) const override;
41 bool Accept() override;
42 bool Cancel() override;
43 void InfoBarDismissed() override;
44
45 private:
46 void RunCallback(content::MediaStreamRequestResult result);
47
48 content::WebContents* web_contents_;
49 const content::MediaStreamRequest request_;
50 const ResponseCallback granted_callback_;
tsergeant 2016/09/19 23:27:02 Nit: I would just call this `callback_` rather tha
braveyao 2016/09/20 00:50:06 Done.
51
52 DISALLOW_COPY_AND_ASSIGN(ScreenCaptureInfoBarDelegateAndroid);
53 };
54
55 #endif // CHROME_BROWSER_MEDIA_WEBRTC_SCREEN_CAPTURE_INFOBAR_DELEGATE_ANDROID_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698