Index: services/shell/runner/child/native_apptest.cc |
diff --git a/services/shell/runner/child/native_apptest.cc b/services/shell/runner/child/native_apptest.cc |
index 1d2c15665b85f61c570cfd404f7401d21a68c5a3..06bddc8cd7020b6b71b882c86debf9a15a6242ec 100644 |
--- a/services/shell/runner/child/native_apptest.cc |
+++ b/services/shell/runner/child/native_apptest.cc |
@@ -7,15 +7,17 @@ |
#include "services/shell/public/cpp/application_test_base.h" |
#include "services/shell/runner/child/test_native_service.mojom.h" |
-namespace mojo { |
namespace shell { |
+ |
namespace { |
+ |
void InvertCallback(bool* result, bool from_native) { |
*result = from_native; |
} |
+ |
} // namespace |
-using NativeAppTest = mojo::test::ApplicationTestBase; |
+using NativeAppTest = test::ApplicationTestBase; |
TEST_F(NativeAppTest, Connect) { |
test::TestNativeServicePtr native_service; |
@@ -35,4 +37,3 @@ TEST_F(NativeAppTest, Connect) { |
} |
} // namespace shell |
-} // namespace mojo |