Chromium Code Reviews| Index: chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/IdentityService/IIdentityService.aidl |
| diff --git a/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/IdentityService/IIdentityService.aidl b/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/IdentityService/IIdentityService.aidl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..973dece82ab16d542cfc725da1f8fc9e8e03687e |
| --- /dev/null |
| +++ b/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/IdentityService/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.IdentityService; |
|
pkotwicz
2017/07/14 23:20:05
Based on a code search, package names with upper c
Xi Han
2017/07/17 20:45:32
Thanks for catching it, renamed.
|
| + |
| +/** Interface for communicating between WebAPK Identity Service and Chrome. */ |
|
pkotwicz
2017/07/14 23:20:05
If you change the comment in IdentityService.java
Xi Han
2017/07/17 20:45:32
Done.
|
| +interface IIdentityService { |
| + // Gets the package name of its runtime host browser. |
| + String getRuntimeHostBrowserPackageName(); |
| +} |