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

Unified Diff: shell/application_manager/test.mojom

Issue 1454113003: Require an explicit ServiceName annotation for interfaces in C++. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « services/test_service/test_service.mojom ('k') | shell/test/pingable.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/application_manager/test.mojom
diff --git a/shell/application_manager/test.mojom b/shell/application_manager/test.mojom
index f5a45a8125a1096404e1514332c6c1deed5d79c9..732fe35dd0c5b150de0db81cf9bebd4919dde0b0 100644
--- a/shell/application_manager/test.mojom
+++ b/shell/application_manager/test.mojom
@@ -4,20 +4,24 @@
module shell;
+[ServiceName="shell::TestService"]
interface TestService {
Test(string test_string) => ();
};
+[ServiceName="shell::TestA"]
interface TestA {
CallB();
CallCFromB();
};
+[ServiceName="shell::TestB"]
interface TestB {
B() => ();
CallC() => ();
};
+[ServiceName="shell::TestC"]
interface TestC {
C() => ();
};
« no previous file with comments | « services/test_service/test_service.mojom ('k') | shell/test/pingable.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698