Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(979)

Unified Diff: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc

Issue 1135183002: Ensure EasyUnlockPrivateAPI factory is initialized on start up. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: uncomment Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
diff --git a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
index 6a50a6021c3b53c7ac2a84c01d02ab7c299e5150..c7f63aed7303f790e14b18051f7971915000bb59 100644
--- a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
+++ b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
@@ -9,7 +9,8 @@
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace extensions {
-namespace api {
+
+namespace easy_unlock_private = api::easy_unlock_private;
namespace {
@@ -39,7 +40,7 @@ std::string SignatureTypeToString(easy_unlock_private::SignatureType type) {
// ChromeOS specific EasyUnlockPrivateCryptoDelegate implementation.
class EasyUnlockPrivateCryptoDelegateChromeOS
- : public extensions::api::EasyUnlockPrivateCryptoDelegate {
+ : public extensions::EasyUnlockPrivateCryptoDelegate {
public:
EasyUnlockPrivateCryptoDelegateChromeOS()
: dbus_client_(
@@ -128,5 +129,4 @@ scoped_ptr<EasyUnlockPrivateCryptoDelegate>
new EasyUnlockPrivateCryptoDelegateChromeOS());
}
-} // namespace api
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698