| Index: chrome/browser/sync/test/integration/preferences_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/preferences_helper.cc b/chrome/browser/sync/test/integration/preferences_helper.cc
|
| index 50d1306f2e993011b2d22ddc103752721837294d..7cd12fb7cae4d378b71634e3561c79bc1c725b9c 100644
|
| --- a/chrome/browser/sync/test/integration/preferences_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/preferences_helper.cc
|
| @@ -39,7 +39,7 @@ void ChangeIntegerPref(int index, const char* pref_name, int new_value) {
|
| GetVerifierPrefs()->SetInteger(pref_name, new_value);
|
| }
|
|
|
| -void ChangeInt64Pref(int index, const char* pref_name, int64 new_value) {
|
| +void ChangeInt64Pref(int index, const char* pref_name, int64_t new_value) {
|
| GetPrefs(index)->SetInt64(pref_name, new_value);
|
| if (test()->use_verifier())
|
| GetVerifierPrefs()->SetInt64(pref_name, new_value);
|
| @@ -126,7 +126,7 @@ bool IntegerPrefMatches(const char* pref_name) {
|
| }
|
|
|
| bool Int64PrefMatches(const char* pref_name) {
|
| - int64 reference_value;
|
| + int64_t reference_value;
|
| if (test()->use_verifier()) {
|
| reference_value = GetVerifierPrefs()->GetInt64(pref_name);
|
| } else {
|
|
|