| OLD | NEW |
| 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_WEBRTC_BROWSERTEST_BASE_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_BASE_H_ |
| 6 #define CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_BASE_H_ | 6 #define CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_BASE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "chrome/test/base/in_process_browser_test.h" | 10 #include "chrome/test/base/in_process_browser_test.h" |
| 11 | 11 |
| 12 class InfoBar; | |
| 13 | |
| 14 namespace content { | 12 namespace content { |
| 15 class WebContents; | 13 class WebContents; |
| 16 } | 14 } |
| 17 | 15 |
| 16 class MediaStreamInfoBarDelegate; |
| 17 |
| 18 // Base class for WebRTC browser tests with useful primitives for interacting | 18 // Base class for WebRTC browser tests with useful primitives for interacting |
| 19 // getUserMedia. We use inheritance here because it makes the test code look | 19 // getUserMedia. We use inheritance here because it makes the test code look |
| 20 // as clean as it can be. | 20 // as clean as it can be. |
| 21 class WebRtcTestBase : public InProcessBrowserTest { | 21 class WebRtcTestBase : public InProcessBrowserTest { |
| 22 protected: | 22 protected: |
| 23 // Typical constraints. | 23 // Typical constraints. |
| 24 static const char kAudioVideoCallConstraints[]; | 24 static const char kAudioVideoCallConstraints[]; |
| 25 static const char kAudioOnlyCallConstraints[]; | 25 static const char kAudioOnlyCallConstraints[]; |
| 26 static const char kVideoOnlyCallConstraints[]; | 26 static const char kVideoOnlyCallConstraints[]; |
| 27 | 27 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 44 | 44 |
| 45 content::WebContents* OpenPageAndAcceptUserMedia(const GURL& url) const; | 45 content::WebContents* OpenPageAndAcceptUserMedia(const GURL& url) const; |
| 46 | 46 |
| 47 void ConnectToPeerConnectionServer(const std::string& peer_name, | 47 void ConnectToPeerConnectionServer(const std::string& peer_name, |
| 48 content::WebContents* tab_contents) const; | 48 content::WebContents* tab_contents) const; |
| 49 std::string ExecuteJavascript(const std::string& javascript, | 49 std::string ExecuteJavascript(const std::string& javascript, |
| 50 content::WebContents* tab_contents) const; | 50 content::WebContents* tab_contents) const; |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 void CloseInfoBarInTab(content::WebContents* tab_contents, | 53 void CloseInfoBarInTab(content::WebContents* tab_contents, |
| 54 InfoBar* infobar) const; | 54 MediaStreamInfoBarDelegate* infobar) const; |
| 55 InfoBar* GetUserMediaAndWaitForInfoBar(content::WebContents* tab_contents, | 55 MediaStreamInfoBarDelegate* GetUserMediaAndWaitForInfoBar( |
| 56 const std::string& constraints) const; | 56 content::WebContents* tab_contents, |
| 57 const std::string& constraints) const; |
| 57 | 58 |
| 58 DISALLOW_COPY_AND_ASSIGN(WebRtcTestBase); | 59 DISALLOW_COPY_AND_ASSIGN(WebRtcTestBase); |
| 59 }; | 60 }; |
| 60 | 61 |
| 61 #endif // CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_BASE_H_ | 62 #endif // CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_BASE_H_ |
| OLD | NEW |