Index: mojo/public/java/bindings/src/org/chromium/mojo/bindings/Interface.java |
diff --git a/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Interface.java b/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Interface.java |
index 52c3a13ad8827c7adc9f4358bd815b2b4f99d278..25d84e8c2d22f1af9b86eba3fcc0a5321199fe67 100644 |
--- a/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Interface.java |
+++ b/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Interface.java |
@@ -174,6 +174,12 @@ public interface Interface extends ConnectionErrorHandler, Closeable { |
abstract class Manager<I extends Interface, P extends Proxy> { |
/** |
+ * Returns the name of the interface. This is an opaque (but human readable) identifier used |
+ * by the service provider to identify services. |
+ */ |
+ public abstract String getName(); |
+ |
+ /** |
* Binds the given implementation to the handle. |
*/ |
public void bind(I impl, MessagePipeHandle handle) { |