| Index: content/browser/devtools/protocol/tracing_handler_unittest.cc
|
| diff --git a/content/browser/devtools/protocol/tracing_handler_unittest.cc b/content/browser/devtools/protocol/tracing_handler_unittest.cc
|
| index b5cda566aef3b9f8dcb84fc14e9cb7d25b5e75aa..8ca2dee070b027c045b98e4f42f2e2729ce5e570 100644
|
| --- a/content/browser/devtools/protocol/tracing_handler_unittest.cc
|
| +++ b/content/browser/devtools/protocol/tracing_handler_unittest.cc
|
| @@ -9,8 +9,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace content {
|
| -namespace devtools {
|
| -namespace tracing {
|
| +namespace protocol {
|
|
|
| namespace {
|
|
|
| @@ -54,7 +53,7 @@ const char kCustomTraceConfigStringDevToolsStyle[] =
|
| "\"synthetic_delays\":[\"test.Delay1;16\",\"test.Delay2;32\"]"
|
| "}";
|
|
|
| -}
|
| +} // namespace
|
|
|
| TEST(TracingHandlerTest, GetTraceConfigFromDevToolsConfig) {
|
| std::unique_ptr<base::Value> value =
|
| @@ -68,6 +67,5 @@ TEST(TracingHandlerTest, GetTraceConfigFromDevToolsConfig) {
|
| EXPECT_STREQ(kCustomTraceConfigString, trace_config.ToString().c_str());
|
| }
|
|
|
| -} // namespace tracing
|
| -} // namespace devtools
|
| +} // namespace protocol
|
| } // namespace content
|
|
|