| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CONTENT_BROWSER_MEDIA_WEBRTC_WEBRTC_CONTENT_BROWSERTEST_BASE_H_ |
| 6 #define CONTENT_BROWSER_MEDIA_WEBRTC_WEBRTC_CONTENT_BROWSERTEST_BASE_H_ |
| 7 |
| 5 #include "content/public/test/content_browser_test.h" | 8 #include "content/public/test/content_browser_test.h" |
| 6 | 9 |
| 7 namespace base { | 10 namespace base { |
| 8 class CommandLine; | 11 class CommandLine; |
| 9 } | 12 } |
| 10 | 13 |
| 11 namespace content { | 14 namespace content { |
| 12 | 15 |
| 13 // Contains stuff WebRTC browsertests have in common. | 16 // Contains stuff WebRTC browsertests have in common. |
| 14 class WebRtcContentBrowserTest: public ContentBrowserTest { | 17 class WebRtcContentBrowserTest: public ContentBrowserTest { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 38 std::string GenerateGetUserMediaCall(const char* function_name, | 41 std::string GenerateGetUserMediaCall(const char* function_name, |
| 39 int min_width, | 42 int min_width, |
| 40 int max_width, | 43 int max_width, |
| 41 int min_height, | 44 int min_height, |
| 42 int max_height, | 45 int max_height, |
| 43 int min_frame_rate, | 46 int min_frame_rate, |
| 44 int max_frame_rate) const; | 47 int max_frame_rate) const; |
| 45 }; | 48 }; |
| 46 | 49 |
| 47 } // namespace content | 50 } // namespace content |
| 51 |
| 52 #endif // CONTENT_BROWSER_MEDIA_WEBRTC_WEBRTC_CONTENT_BROWSERTEST_BASE_H_ |
| OLD | NEW |