| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SIGNIN_SIGNIN_UI_UTIL_H_ | 5 #ifndef CHROME_BROWSER_SIGNIN_SIGNIN_UI_UTIL_H_ |
| 6 #define CHROME_BROWSER_SIGNIN_SIGNIN_UI_UTIL_H_ | 6 #define CHROME_BROWSER_SIGNIN_SIGNIN_UI_UTIL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 // Return the label that should be displayed in the signin menu (i.e. | 27 // Return the label that should be displayed in the signin menu (i.e. |
| 28 // "Sign in to Chromium", "Signin Error...", etc). | 28 // "Sign in to Chromium", "Signin Error...", etc). |
| 29 base::string16 GetSigninMenuLabel(Profile* profile); | 29 base::string16 GetSigninMenuLabel(Profile* profile); |
| 30 | 30 |
| 31 void GetStatusLabelsForAuthError(Profile* profile, | 31 void GetStatusLabelsForAuthError(Profile* profile, |
| 32 const SigninManagerBase& signin_manager, | 32 const SigninManagerBase& signin_manager, |
| 33 base::string16* status_label, | 33 base::string16* status_label, |
| 34 base::string16* link_label); | 34 base::string16* link_label); |
| 35 | 35 |
| 36 void InitializePrefsForProfile(Profile* profile); |
| 37 |
| 36 } // namespace signin_ui_util | 38 } // namespace signin_ui_util |
| 37 | 39 |
| 38 #endif // CHROME_BROWSER_SIGNIN_SIGNIN_UI_UTIL_H_ | 40 #endif // CHROME_BROWSER_SIGNIN_SIGNIN_UI_UTIL_H_ |
| OLD | NEW |