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

Unified Diff: content/common/service_port_service.mojom

Issue 1409223004: mandoline: Add automatic tracing at mojo call sites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Safety rebase to ToT Created 5 years, 2 months 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: content/common/service_port_service.mojom
diff --git a/content/common/service_port_service.mojom b/content/common/service_port_service.mojom
index 41cee6a4ea99503e5c73efab2cc7bed3cab8989a..d5bbb58a4972377c7cac9f535f46db73bd8c6aa8 100644
--- a/content/common/service_port_service.mojom
+++ b/content/common/service_port_service.mojom
@@ -20,15 +20,15 @@ interface ServicePortService {
Connect(string target_url, string origin)
=> (ServicePortConnectResult result, int32 port_id);
- PostMessage(int32 port_id, string message,
- array<MojoTransferredMessagePort> ports);
+ PostMessageToPort(int32 port_id, string message,
+ array<MojoTransferredMessagePort> ports);
ClosePort(int32 port_id);
};
interface ServicePortServiceClient {
- PostMessage(int32 port_id, string message,
- array<MojoTransferredMessagePort> ports,
- array<int32> new_routing_ids);
+ PostMessageToPort(int32 port_id, string message,
+ array<MojoTransferredMessagePort> ports,
+ array<int32> new_routing_ids);
};
interface ServicePortDispatcher {

Powered by Google App Engine
This is Rietveld 408576698