Index: chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/identity_service/IIdentityService.aidl |
diff --git a/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/identity_service/IIdentityService.aidl b/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/identity_service/IIdentityService.aidl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..778fec820384ee7592c074d6e9c4d32b88375ce3 |
--- /dev/null |
+++ b/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/identity_service/IIdentityService.aidl |
@@ -0,0 +1,11 @@ |
+// Copyright 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.chromium.webapk.lib.common.identity_service; |
+ |
+/** IdentityService allows browsers to query information about the WebAPK. */ |
+interface IIdentityService { |
+ // Gets the package name of its runtime host browser. |
+ String getRuntimeHostBrowserPackageName(); |
+} |