| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/macros.h" | 6 #include "base/macros.h" |
| 7 #include "content/browser/media/webrtc/webrtc_content_browsertest_base.h" | |
| 8 #include "content/public/common/content_switches.h" | 7 #include "content/public/common/content_switches.h" |
| 8 #include "content/test/webrtc_content_browsertest_base.h" |
| 9 | 9 |
| 10 namespace { | 10 namespace { |
| 11 | 11 |
| 12 const char kJavaScriptFeaturesNeeded[] = "--expose-gc"; | 12 const char kJavaScriptFeaturesNeeded[] = "--expose-gc"; |
| 13 const char kDataChannelHtmlFile[] = "/media/datachannel_test.html"; | 13 const char kDataChannelHtmlFile[] = "/media/datachannel_test.html"; |
| 14 | 14 |
| 15 } // namespace | 15 } // namespace |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 | 18 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 DISALLOW_COPY_AND_ASSIGN(MAYBE_WebRtcDataChannelTest); | 41 DISALLOW_COPY_AND_ASSIGN(MAYBE_WebRtcDataChannelTest); |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 IN_PROC_BROWSER_TEST_F(MAYBE_WebRtcDataChannelTest, DataChannelGC) { | 44 IN_PROC_BROWSER_TEST_F(MAYBE_WebRtcDataChannelTest, DataChannelGC) { |
| 45 MakeTypicalCall("testDataChannelGC();", kDataChannelHtmlFile); | 45 MakeTypicalCall("testDataChannelGC();", kDataChannelHtmlFile); |
| 46 } | 46 } |
| 47 | 47 |
| 48 } // namespace content | 48 } // namespace content |
| OLD | NEW |