| 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_WEBRTC_BROWSERTEST_BASE_H_ |
| 6 #define CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_BASE_H_ | 6 #define CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_BROWSERTEST_BASE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "chrome/test/base/in_process_browser_test.h" | 11 #include "chrome/test/base/in_process_browser_test.h" |
| 12 | 12 |
| 13 namespace infobars { | 13 namespace infobars { |
| 14 class InfoBar; | 14 class InfoBar; |
| 15 } | 15 } |
| 16 | 16 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 | 187 |
| 188 infobars::InfoBar* GetUserMediaAndWaitForInfoBar( | 188 infobars::InfoBar* GetUserMediaAndWaitForInfoBar( |
| 189 content::WebContents* tab_contents, | 189 content::WebContents* tab_contents, |
| 190 const std::string& constraints) const; | 190 const std::string& constraints) const; |
| 191 | 191 |
| 192 bool detect_errors_in_javascript_; | 192 bool detect_errors_in_javascript_; |
| 193 | 193 |
| 194 DISALLOW_COPY_AND_ASSIGN(WebRtcTestBase); | 194 DISALLOW_COPY_AND_ASSIGN(WebRtcTestBase); |
| 195 }; | 195 }; |
| 196 | 196 |
| 197 #endif // CHROME_BROWSER_MEDIA_WEBRTC_BROWSERTEST_BASE_H_ | 197 #endif // CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_BROWSERTEST_BASE_H_ |
| OLD | NEW |