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

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: address comments Created 4 years, 2 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 // An infobar that allows the user to share their screen with the current page.
16 class ScreenCaptureInfoBarDelegateAndroid : public ConfirmInfoBarDelegate {
17 public:
18 // Creates a screen capture infobar and delegate and adds the infobar to the
19 // InfoBarService associated with |web_contents|.
20 static void Create(content::WebContents* web_contents,
21 const content::MediaStreamRequest& request,
22 const content::MediaResponseCallback& callback);
23
24 private:
25 ScreenCaptureInfoBarDelegateAndroid(
26 content::WebContents* web_contents,
27 const content::MediaStreamRequest& request,
28 const content::MediaResponseCallback& callback);
29 ~ScreenCaptureInfoBarDelegateAndroid() override;
30
31 // ConfirmInfoBarDelegate:
32 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
33 base::string16 GetMessageText() const override;
34 int GetIconId() const override;
35 base::string16 GetButtonLabel(InfoBarButton button) const override;
36 bool Accept() override;
37 bool Cancel() override;
38 void InfoBarDismissed() override;
39
40 // Runs |callback_|, passing it the |result|, and (if permission was granted)
41 // the appropriate stream device and UI object for video capture.
42 void RunCallback(content::MediaStreamRequestResult result);
43
44 content::WebContents* web_contents_;
45 const content::MediaStreamRequest request_;
46 content::MediaResponseCallback callback_;
47
48 DISALLOW_COPY_AND_ASSIGN(ScreenCaptureInfoBarDelegateAndroid);
49 };
50
51 #endif // CHROME_BROWSER_MEDIA_WEBRTC_SCREEN_CAPTURE_INFOBAR_DELEGATE_ANDROID_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698