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

Side by Side Diff: webrtc/modules/audio_device/test/func_test_manager.cc

Issue 1469013002: Move ThreadWrapper to ProcessThread in base. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: removed comment Created 5 years 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 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 _audioTransport = NULL; 679 _audioTransport = NULL;
680 } 680 }
681 681
682 // release the AudioDeviceModule object 682 // release the AudioDeviceModule object
683 if (_audioDevice) 683 if (_audioDevice)
684 { 684 {
685 EXPECT_EQ(0, _audioDevice->Release()); 685 EXPECT_EQ(0, _audioDevice->Release());
686 _audioDevice = NULL; 686 _audioDevice = NULL;
687 } 687 }
688 688
689 // return the ThreadWrapper (singleton) 689 // return the PlatformThread (singleton)
690 Trace::ReturnTrace(); 690 Trace::ReturnTrace();
691 691
692 // PRINT_TEST_RESULTS; 692 // PRINT_TEST_RESULTS;
693 693
694 return 0; 694 return 0;
695 } 695 }
696 696
697 int32_t FuncTestManager::DoTest(const TestType testType) 697 int32_t FuncTestManager::DoTest(const TestType testType)
698 { 698 {
699 switch (testType) 699 switch (testType)
(...skipping 2064 matching lines...) Expand 10 before | Expand all | Expand 10 after
2764 2764
2765 TEST_LOG("\n"); 2765 TEST_LOG("\n");
2766 PRINT_TEST_RESULTS; 2766 PRINT_TEST_RESULTS;
2767 2767
2768 return 0; 2768 return 0;
2769 } 2769 }
2770 2770
2771 } // namespace webrtc 2771 } // namespace webrtc
2772 2772
2773 // EOF 2773 // EOF
OLDNEW
« no previous file with comments | « webrtc/modules/audio_device/mac/audio_device_mac.cc ('k') | webrtc/modules/audio_device/win/audio_device_wave_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698