Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package org.chromium.net; | |
| 6 | |
| 7 /** | |
| 8 * Abstract private key that bundles the PrivateKey and AndroidKeyStore that it belongs to. | |
| 9 */ | |
| 10 public interface AndroidPrivateKey { | |
| 11 /** @return AndroidKeyStore that handles this key. */ | |
|
bulach
2014/02/14 10:45:29
as above, I think this can be @CalledByNative
Yaron
2014/02/14 19:36:56
Done.
| |
| 12 AndroidKeyStore getKeyStore(); | |
| 13 } | |
| OLD | NEW |