| 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/debug/trace_event_impl.h" | 6 #include "base/debug/trace_event_impl.h" |
| 7 #include "base/json/json_reader.h" | 7 #include "base/json/json_reader.h" |
| 8 #include "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
| 9 #include "base/test/trace_event_analyzer.h" | 9 #include "base/test/trace_event_analyzer.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 return function_name + "({" + audio_constraint + video_constraint + "});"; | 71 return function_name + "({" + audio_constraint + video_constraint + "});"; |
| 72 } | 72 } |
| 73 | 73 |
| 74 } // namespace | 74 } // namespace |
| 75 | 75 |
| 76 namespace content { | 76 namespace content { |
| 77 | 77 |
| 78 class WebRtcGetUserMediaBrowserTest: public WebRtcContentBrowserTest { | 78 class WebRtcGetUserMediaBrowserTest: public WebRtcContentBrowserTest { |
| 79 public: | 79 public: |
| 80 WebRtcGetUserMediaBrowserTest() : trace_log_(NULL) {} | 80 WebRtcGetUserMediaBrowserTest() : trace_log_(NULL) {} |
| 81 virtual ~WebRtcGetUserMediaBrowserTest() {} | 81 ~WebRtcGetUserMediaBrowserTest() override {} |
| 82 | 82 |
| 83 void StartTracing() { | 83 void StartTracing() { |
| 84 CHECK(trace_log_ == NULL) << "Can only can start tracing once"; | 84 CHECK(trace_log_ == NULL) << "Can only can start tracing once"; |
| 85 trace_log_ = base::debug::TraceLog::GetInstance(); | 85 trace_log_ = base::debug::TraceLog::GetInstance(); |
| 86 base::debug::TraceOptions trace_options(base::debug::RECORD_UNTIL_FULL); | 86 base::debug::TraceOptions trace_options(base::debug::RECORD_UNTIL_FULL); |
| 87 trace_options.enable_sampling = true; | 87 trace_options.enable_sampling = true; |
| 88 trace_log_->SetEnabled(base::debug::CategoryFilter("video"), | 88 trace_log_->SetEnabled(base::debug::CategoryFilter("video"), |
| 89 base::debug::TraceLog::RECORDING_MODE, | 89 base::debug::TraceLog::RECORDING_MODE, |
| 90 trace_options); | 90 trace_options); |
| 91 // Check that we are indeed recording. | 91 // Check that we are indeed recording. |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 {640, 640, 360, 360, 10, 30}, | 637 {640, 640, 360, 360, 10, 30}, |
| 638 {640, 640, 480, 480, 10, 30}, | 638 {640, 640, 480, 480, 10, 30}, |
| 639 {960, 960, 720, 720, 10, 30}, | 639 {960, 960, 720, 720, 10, 30}, |
| 640 {1280, 1280, 720, 720, 10, 30}}; | 640 {1280, 1280, 720, 720, 10, 30}}; |
| 641 | 641 |
| 642 INSTANTIATE_TEST_CASE_P(UserMedia, | 642 INSTANTIATE_TEST_CASE_P(UserMedia, |
| 643 WebRtcConstraintsBrowserTest, | 643 WebRtcConstraintsBrowserTest, |
| 644 testing::ValuesIn(kAllUserMediaSizes)); | 644 testing::ValuesIn(kAllUserMediaSizes)); |
| 645 | 645 |
| 646 } // namespace content | 646 } // namespace content |
| OLD | NEW |