| 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 #include <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/json/json_reader.h" | 8 #include "base/json/json_reader.h" |
| 9 #include "base/memory/ref_counted_memory.h" |
| 9 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 10 #include "base/test/trace_event_analyzer.h" | 11 #include "base/test/trace_event_analyzer.h" |
| 11 #include "base/trace_event/trace_event_impl.h" | 12 #include "base/trace_event/trace_event_impl.h" |
| 12 #include "base/values.h" | 13 #include "base/values.h" |
| 13 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 14 #include "content/browser/media/webrtc_internals.h" | 15 #include "content/browser/media/webrtc_internals.h" |
| 15 #include "content/browser/web_contents/web_contents_impl.h" | 16 #include "content/browser/web_contents/web_contents_impl.h" |
| 16 #include "content/public/common/content_switches.h" | 17 #include "content/public/common/content_switches.h" |
| 17 #include "content/public/test/browser_test_utils.h" | 18 #include "content/public/test/browser_test_utils.h" |
| 18 #include "content/public/test/content_browser_test_utils.h" | 19 #include "content/public/test/content_browser_test_utils.h" |
| (...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 {640, 640, 360, 360, 10, 30}, | 770 {640, 640, 360, 360, 10, 30}, |
| 770 {640, 640, 480, 480, 10, 30}, | 771 {640, 640, 480, 480, 10, 30}, |
| 771 {960, 960, 720, 720, 10, 30}, | 772 {960, 960, 720, 720, 10, 30}, |
| 772 {1280, 1280, 720, 720, 10, 30}}; | 773 {1280, 1280, 720, 720, 10, 30}}; |
| 773 | 774 |
| 774 INSTANTIATE_TEST_CASE_P(UserMedia, | 775 INSTANTIATE_TEST_CASE_P(UserMedia, |
| 775 WebRtcConstraintsBrowserTest, | 776 WebRtcConstraintsBrowserTest, |
| 776 testing::ValuesIn(kAllUserMediaSizes)); | 777 testing::ValuesIn(kAllUserMediaSizes)); |
| 777 | 778 |
| 778 } // namespace content | 779 } // namespace content |
| OLD | NEW |