Index: chrome/browser/signin/easy_unlock.h |
diff --git a/chrome/browser/signin/easy_unlock.h b/chrome/browser/signin/easy_unlock.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..48f9f0cc28b6cbd7ed1ee57b97a4a141281afcb3 |
--- /dev/null |
+++ b/chrome/browser/signin/easy_unlock.h |
@@ -0,0 +1,24 @@ |
+// Copyright 2014 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. |
+ |
+#ifndef CHROME_BROWSER_SIGNIN_EASY_UNLOCK_H_ |
+#define CHROME_BROWSER_SIGNIN_EASY_UNLOCK_H_ |
+ |
+namespace user_prefs { |
+class PrefRegistrySyncable; |
+} |
+ |
+class Profile; |
+ |
+namespace easy_unlock { |
+ |
+// Registers Easy Unlock profile preferences. |
+void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
+ |
+// Launches Easy Unlock Setup app. |
+void LaunchEasyUnlockSetup(Profile* profile); |
+ |
+} // namespace easy_unlock |
+ |
+#endif // CHROME_BROWSER_SIGNIN_EASY_UNLOCK_H_ |