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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp

Issue 2970833002: Be explicit about namespace testing to not mix it with blink::testing (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp
index c87ab2c011259b96f66f8542e19d1994c574201f..3d2a99f1bc21de6d4268f08fa5dd9b350cf41d27 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableAreaTest.cpp
@@ -14,7 +14,7 @@
#include "platform/testing/RuntimeEnabledFeaturesTestHelpers.h"
#include "testing/gmock/include/gmock/gmock.h"
-using testing::_;
+using ::testing::_;
namespace blink {
namespace {
@@ -38,7 +38,7 @@ class PaintLayerScrollableAreaTest : public RenderingTest {
chrome_client_(new MockChromeClient) {}
~PaintLayerScrollableAreaTest() {
- testing::Mock::VerifyAndClearExpectations(&GetChromeClient());
+ ::testing::Mock::VerifyAndClearExpectations(&GetChromeClient());
}
MockChromeClient& GetChromeClient() const override { return *chrome_client_; }

Powered by Google App Engine
This is Rietveld 408576698