Fully qualify googletest symbols.
Semi-automatically created with: git grep -l " testing::" | xargs sed -i "s/ testing::/ ::testing::/g" git grep -l "(testing::" | xargs sed -i "s/(testing::/(::testing::/g" git cl format After this, two .cc files failed to compile and I have fixed them manually. Bug: webrtc:10523 Change-Id: I4741d3bcedc831b6c5fdc04485678617eb4ce031 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/132018 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27526}
This commit is contained in:
committed by
Commit Bot
parent
a857698d54
commit
6a489f22c7
@ -28,10 +28,10 @@
|
||||
namespace webrtc {
|
||||
namespace {
|
||||
|
||||
using testing::AtLeast;
|
||||
using testing::Return;
|
||||
using testing::StrictMock;
|
||||
using testing::_;
|
||||
using ::testing::_;
|
||||
using ::testing::AtLeast;
|
||||
using ::testing::Return;
|
||||
using ::testing::StrictMock;
|
||||
|
||||
// Verifies that the basic BlockProcessor functionality works and that the API
|
||||
// methods are callable.
|
||||
@ -151,7 +151,7 @@ TEST(BlockProcessor, DISABLED_SubmoduleIntegration) {
|
||||
render_delay_buffer_mock(
|
||||
new StrictMock<webrtc::test::MockRenderDelayBuffer>(rate));
|
||||
std::unique_ptr<
|
||||
testing::StrictMock<webrtc::test::MockRenderDelayController>>
|
||||
::testing::StrictMock<webrtc::test::MockRenderDelayController>>
|
||||
render_delay_controller_mock(
|
||||
new StrictMock<webrtc::test::MockRenderDelayController>());
|
||||
std::unique_ptr<testing::StrictMock<webrtc::test::MockEchoRemover>>
|
||||
|
||||
Reference in New Issue
Block a user