Index: mojo/services/public/interfaces/view_manager/view_manager.mojom |
diff --git a/mojo/services/public/interfaces/view_manager/view_manager.mojom b/mojo/services/public/interfaces/view_manager/view_manager.mojom |
index 173fa3190b90667fcebf3d63d913bd37d0ce2ea7..efa59365650f824a1a76c86403924488ccbdc1da 100644 |
--- a/mojo/services/public/interfaces/view_manager/view_manager.mojom |
+++ b/mojo/services/public/interfaces/view_manager/view_manager.mojom |
@@ -21,7 +21,7 @@ struct INode { |
// uint16 as the connection id of the originating connection is used. |
// |
// The root node is identified with a connection id of 0, and value of 1. |
-[Peer=IViewManagerClient] |
+[Client=IViewManagerClient] |
interface IViewManager { |
// Creates a new node with the specified id. It is up to the client to ensure |
// the id is unique to the connection (the id need not be globally unique). |
@@ -55,7 +55,6 @@ interface IViewManager { |
SetView(uint32 node_id, uint32 view_id, uint32 change_id) => (bool success); |
}; |
-[Peer=IViewManager] |
interface IViewManagerClient { |
// Invoked once the connection has been established. |connection_id| is the id |
// used to uniquely identify the connection. |