| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |