| Index: chrome/browser/ui/webui/chromeos/ui_account_tweaks.h
|
| diff --git a/chrome/browser/ui/webui/chromeos/ui_account_tweaks.h b/chrome/browser/ui/webui/chromeos/ui_account_tweaks.h
|
| index 25a7f730402cd4c4d651e4a419cc85c2757fdba2..271085ac74c28a499bbad457454ceda57c7157e5 100644
|
| --- a/chrome/browser/ui/webui/chromeos/ui_account_tweaks.h
|
| +++ b/chrome/browser/ui/webui/chromeos/ui_account_tweaks.h
|
| @@ -8,6 +8,8 @@
|
| #include "base/values.h"
|
| #include "base/compiler_specific.h"
|
|
|
| +class Profile;
|
| +
|
| namespace content {
|
| class WebUIDataSource;
|
| }
|
| @@ -20,7 +22,7 @@ namespace chromeos {
|
| * @param localized_strings non-null dictionary that will be filled.
|
| */
|
| void AddAccountUITweaksLocalizedValues(
|
| - base::DictionaryValue* localized_strings);
|
| + base::DictionaryValue* localized_strings, Profile* profile);
|
|
|
| /**
|
| * Fills given data source with account status data (whether current user is
|
| @@ -28,7 +30,8 @@ void AddAccountUITweaksLocalizedValues(
|
| * @param source non-null ui data source which localized values dictionary will
|
| * be filled.
|
| */
|
| -void AddAccountUITweaksLocalizedValues(content::WebUIDataSource* source);
|
| +void AddAccountUITweaksLocalizedValues(content::WebUIDataSource* source,
|
| + Profile* profile);
|
|
|
| } // namespace chromeos
|
|
|
|
|