Index: chrome/browser/chromeos/profiles/profile_helper.h |
diff --git a/chrome/browser/chromeos/profiles/profile_helper.h b/chrome/browser/chromeos/profiles/profile_helper.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f452804046d7b8eb9384396a0d971b43ccd24055 |
--- /dev/null |
+++ b/chrome/browser/chromeos/profiles/profile_helper.h |
@@ -0,0 +1,30 @@ |
+// Copyright (c) 2013 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_CHROMEOS_PROFILES_PROFILE_HELPER_H_ |
+#define CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ |
+ |
+#include "base/basictypes.h" |
+ |
+class Profile; |
+ |
+namespace chromeos { |
+ |
+class ProfileHelper { |
+ public: |
+ // Returns OffTheRecord profile for use during signing phase. |
+ static Profile* GetSigninProfile(); |
+ |
+ // Initialize a bunch of services that are tied to a browser profile. |
+ // TODO(dzhioev): Investigate whether or not this method is needed. |
+ static void ProfileStartup(Profile* profile, bool process_startup); |
+ |
+ private: |
+ DISALLOW_IMPLICIT_CONSTRUCTORS(ProfileHelper); |
+}; |
+ |
+} // namespace chromeos |
+ |
+#endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_ |
+ |