| 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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 | 528 |
| 529 EXPECT_TRUE(base::PathExists(unique_dump_file)); | 529 EXPECT_TRUE(base::PathExists(unique_dump_file)); |
| 530 int64 file_size = 0; | 530 int64 file_size = 0; |
| 531 EXPECT_TRUE(base::GetFileSize(unique_dump_file, &file_size)); | 531 EXPECT_TRUE(base::GetFileSize(unique_dump_file, &file_size)); |
| 532 EXPECT_GT(file_size, 0); | 532 EXPECT_GT(file_size, 0); |
| 533 | 533 |
| 534 base::DeleteFile(unique_dump_file, false); | 534 base::DeleteFile(unique_dump_file, false); |
| 535 } | 535 } |
| 536 } | 536 } |
| 537 | 537 |
| 538 IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, CreateOfferWithOfferOptions) { |
| 539 MakeTypicalPeerConnectionCall("testCreateOfferOptions();"); |
| 540 } |
| 541 |
| 538 } // namespace content | 542 } // namespace content |
| OLD | NEW |