Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: content/browser/media/webrtc_browsertest.cc

Issue 396193005: Converts RTCOfferOptions to constriants in the glue code for createOffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | content/browser/media/webrtc_internals.h » ('j') | content/browser/media/webrtc_internals.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698