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

Unified Diff: third_party/WebKit/Source/platform/loader/LinkHeaderTest.cpp

Issue 2967013002: Be explicit about namespace testing to not mix it with blink::testing (Closed)
Patch Set: Dropped mojo parts that need another review. 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/platform/loader/LinkHeaderTest.cpp
diff --git a/third_party/WebKit/Source/platform/loader/LinkHeaderTest.cpp b/third_party/WebKit/Source/platform/loader/LinkHeaderTest.cpp
index 7ef6296aef82e31ec810ea3e663a5c688d1adc1a..fade7479fff87e734ff89607a357f39c271dea5b 100644
--- a/third_party/WebKit/Source/platform/loader/LinkHeaderTest.cpp
+++ b/third_party/WebKit/Source/platform/loader/LinkHeaderTest.cpp
@@ -175,7 +175,7 @@ TEST_P(SingleLinkHeaderTest, Single) {
INSTANTIATE_TEST_CASE_P(LinkHeaderTest,
SingleLinkHeaderTest,
- testing::ValuesIn(g_single_test_cases));
+ ::testing::ValuesIn(g_single_test_cases));
struct DoubleTestCase {
const char* header_value;
@@ -219,7 +219,7 @@ TEST_P(DoubleLinkHeaderTest, Double) {
INSTANTIATE_TEST_CASE_P(LinkHeaderTest,
DoubleLinkHeaderTest,
- testing::ValuesIn(g_double_test_cases));
+ ::testing::ValuesIn(g_double_test_cases));
struct CrossOriginTestCase {
const char* header_value;
@@ -281,7 +281,7 @@ TEST_P(CrossOriginLinkHeaderTest, CrossOrigin) {
INSTANTIATE_TEST_CASE_P(LinkHeaderTest,
CrossOriginLinkHeaderTest,
- testing::ValuesIn(g_cross_origin_test_cases));
+ ::testing::ValuesIn(g_cross_origin_test_cases));
} // namespace
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698