Commit f60a94af authored by Daniel Bratell's avatar Daniel Bratell Committed by Commit Bot

Compile fix jumbo builds, be specific about which testing to use

There are two namespaces named testing, there is ::testing
and there is ::blink::testing. Inside blink code you have to
write ::testing to be sure to get the root ::testing namespace.

Depending on how ignorant the compiler is, it might work anyway,
but in jumbo builds the compiler often knows about the
blink::testing namespace.

TBR=leon.han@intel.com

Change-Id: I7617e074dba5cabb813c3a823757e0ba0ce15008
Reviewed-on: https://chromium-review.googlesource.com/832607Reviewed-by: default avatarDaniel Bratell <bratell@opera.com>
Commit-Queue: Daniel Bratell <bratell@opera.com>
Cr-Commit-Position: refs/heads/master@{#524711}
parent ee14729e
...@@ -120,7 +120,7 @@ CrossThreadHTTPHeaderMapData ToCrossThreadHTTPHeaderMapData( ...@@ -120,7 +120,7 @@ CrossThreadHTTPHeaderMapData ToCrossThreadHTTPHeaderMapData(
} // namespace } // namespace
class ServiceWorkerInstalledScriptsManagerTest : public testing::Test { class ServiceWorkerInstalledScriptsManagerTest : public ::testing::Test {
public: public:
ServiceWorkerInstalledScriptsManagerTest() ServiceWorkerInstalledScriptsManagerTest()
: io_thread_(Platform::Current()->CreateThread("io thread")), : io_thread_(Platform::Current()->CreateThread("io thread")),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment