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

Unified Diff: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h

Issue 585213002: [Easy signin] Wire up userClick auth attempt to easy unlock app and back (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@easy_signin_focused_user_changed_observer
Patch Set: fix screenlock private test Created 6 years, 3 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_api.h
diff --git a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
index a562c51a89fc12576455d78976c0ee09880d20cb..a6be6abe4ddbfdaf2c82926f52ea0ce92c90c62b 100644
--- a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
+++ b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_api.h
@@ -299,7 +299,7 @@ class EasyUnlockPrivateGetSignInChallengeFunction :
};
class EasyUnlockPrivateTrySignInSecretFunction :
- public AsyncExtensionFunction {
+ public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("easyUnlockPrivate.trySignInSecret",
EASYUNLOCKPRIVATE_TRYSIGNINSECRET)
@@ -308,8 +308,8 @@ class EasyUnlockPrivateTrySignInSecretFunction :
private:
virtual ~EasyUnlockPrivateTrySignInSecretFunction();
- // AsyncExtensionFunction:
- virtual bool RunAsync() OVERRIDE;
+ // SyncExtensionFunction:
+ virtual bool RunSync() OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(EasyUnlockPrivateTrySignInSecretFunction);
};

Powered by Google App Engine
This is Rietveld 408576698