| Index: chrome/browser/sync/sync_ui_util.h
|
| diff --git a/chrome/browser/sync/sync_ui_util.h b/chrome/browser/sync/sync_ui_util.h
|
| index 1bade700006b4c144346351cc08447007d7b949a..d8ef932846a654788d37d217cc0af37b301a08dd 100644
|
| --- a/chrome/browser/sync/sync_ui_util.h
|
| +++ b/chrome/browser/sync/sync_ui_util.h
|
| @@ -73,7 +73,8 @@ string16 GetSyncMenuLabel(ProfileSyncService* service,
|
|
|
| void AddBoolSyncDetail(base::ListValue* details,
|
| const std::string& stat_name,
|
| - bool stat_value);
|
| + bool stat_value,
|
| + bool is_valid);
|
|
|
| // |service| can be NULL.
|
| void ConstructAboutInformation(ProfileSyncService* service,
|
| @@ -81,10 +82,11 @@ void ConstructAboutInformation(ProfileSyncService* service,
|
|
|
| void AddIntSyncDetail(base::ListValue* details,
|
| const std::string& stat_name,
|
| - int64 stat_value);
|
| + int64 stat_value,
|
| + bool is_valid);
|
|
|
| void AddStringSyncDetails(ListValue* details, const std::string& stat_name,
|
| - const std::string& stat_value);
|
| + const std::string& stat_value, bool is_valid);
|
|
|
| // Returns a string describing the chrome version environment. Version format:
|
| // <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel">
|
|
|