| Index: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate.h
|
| diff --git a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate.h b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate.h
|
| index 6354c4cc06ce15fa48a8333507ae5b176f8c05c5..e4683545cc179734073223484aab2b3dd176d6d2 100644
|
| --- a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate.h
|
| +++ b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate.h
|
| @@ -12,7 +12,6 @@
|
| #include "chrome/common/extensions/api/easy_unlock_private.h"
|
|
|
| namespace extensions {
|
| -namespace api {
|
|
|
| // Wrapper around EasyUnlock dbus client on Chrome OS. The methods read
|
| // extension function pearameters and invoke the associated EasyUnlock dbus
|
| @@ -34,17 +33,16 @@ class EasyUnlockPrivateCryptoDelegate {
|
| // See chromeos/dbus/easy_unlock_client.h for info on these methods.
|
| virtual void GenerateEcP256KeyPair(const KeyPairCallback& callback) = 0;
|
| virtual void PerformECDHKeyAgreement(
|
| - const easy_unlock_private::PerformECDHKeyAgreement::Params& params,
|
| + const api::easy_unlock_private::PerformECDHKeyAgreement::Params& params,
|
| const DataCallback& callback) = 0;
|
| virtual void CreateSecureMessage(
|
| - const easy_unlock_private::CreateSecureMessage::Params& params,
|
| + const api::easy_unlock_private::CreateSecureMessage::Params& params,
|
| const DataCallback& callback) = 0;
|
| virtual void UnwrapSecureMessage(
|
| - const easy_unlock_private::UnwrapSecureMessage::Params& params,
|
| + const api::easy_unlock_private::UnwrapSecureMessage::Params& params,
|
| const DataCallback& callback) = 0;
|
| };
|
|
|
| -} // namespace api
|
| } // namespace extensions
|
|
|
| #endif // CHROME_BROWSER_EXTENSIONS_API_EASY_UNLOCK_PRIVATE_EASY_UNLOCK_PRIVATE_CRYPTO_DELEGATE_H_
|
|
|