OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/file_util.h" | 6 #include "base/file_util.h" |
7 #include "base/process/process_handle.h" | 7 #include "base/process/process_handle.h" |
8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
10 #include "base/threading/platform_thread.h" | 10 #include "base/threading/platform_thread.h" |
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 | 541 |
542 EXPECT_TRUE(base::PathExists(unique_dump_file)); | 542 EXPECT_TRUE(base::PathExists(unique_dump_file)); |
543 int64 file_size = 0; | 543 int64 file_size = 0; |
544 EXPECT_TRUE(base::GetFileSize(unique_dump_file, &file_size)); | 544 EXPECT_TRUE(base::GetFileSize(unique_dump_file, &file_size)); |
545 EXPECT_GT(file_size, 0); | 545 EXPECT_GT(file_size, 0); |
546 | 546 |
547 base::DeleteFile(unique_dump_file, false); | 547 base::DeleteFile(unique_dump_file, false); |
548 } | 548 } |
549 } | 549 } |
550 | 550 |
| 551 IN_PROC_BROWSER_TEST_P(WebRtcBrowserTest, CreateOfferWithOfferOptions) { |
| 552 MakeTypicalPeerConnectionCall("testCreateOfferOptions();"); |
| 553 } |
| 554 |
551 } // namespace content | 555 } // namespace content |
OLD | NEW |