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

Unified Diff: services/js/echo_apptest.cc

Issue 780213002: Put code in //services/js in namespace js (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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: services/js/echo_apptest.cc
diff --git a/services/js/echo_apptest.cc b/services/js/echo_apptest.cc
index 0d8169f43bc5958a7e34baea23fb80c42a42d0bc..336c48ff9a767a6454c421b9358f12d354e5e73d 100644
--- a/services/js/echo_apptest.cc
+++ b/services/js/echo_apptest.cc
@@ -5,7 +5,9 @@
#include "services/js/test/echo_service.mojom.h"
#include "services/js/test/js_application_test_base.h"
-namespace mojo {
+using mojo::String;
+
+namespace js {
namespace {
class JSEchoTest : public test::JSApplicationTestBase {
@@ -21,7 +23,7 @@ class JSEchoTest : public test::JSApplicationTestBase {
application_impl()->ConnectToService(url, &echo_service_);
}
- EchoServicePtr echo_service_;
+ mojo::EchoServicePtr echo_service_;
private:
MOJO_DISALLOW_COPY_AND_ASSIGN(JSEchoTest);
@@ -63,4 +65,4 @@ TEST_F(JSEchoTest, EchoNullString) {
}
} // namespace
-} // namespace mojo
+} // namespace js

Powered by Google App Engine
This is Rietveld 408576698