Use ::testing to not get mixed up with ::blink::testing
There is both a ::testing namespace and a blink::testing namespace and if you inside namespace blink says "testing", which one you get depends on what the compiler knows. In jumbo builds compilers often know about both namespaces and will assume you mean ::blink::testing. To be sure to get ::testing, you need to prefix it with ::. In the long run ::blink::testing should probably be renamed. Its name violates the rule that no sub namespace should have the same name as a common top level namespace. Change-Id: I60857ebd08d4b35ce56212d03b4ed63045803402 Reviewed-on: https://chromium-review.googlesource.com/978004 Commit-Queue: Kent Tamura <tkent@chromium.org> Reviewed-by:Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#545717}
Showing
Please register or sign in to comment