Chromium Code Reviews| Index: chrome/browser/profiles/profile.cc |
| diff --git a/chrome/browser/profiles/profile.cc b/chrome/browser/profiles/profile.cc |
| index a0e6f6773fdb9a9fd3c1707f84692ccc307ec212..a8f1948489290784ccafb86b89d1bc4c2249ea11 100644 |
| --- a/chrome/browser/profiles/profile.cc |
| +++ b/chrome/browser/profiles/profile.cc |
| @@ -118,6 +118,11 @@ void Profile::RegisterUserPrefs(PrefRegistrySyncable* registry) { |
| false, |
| PrefRegistrySyncable::UNSYNCABLE_PREF); |
| #endif // defined(OS_ANDROID) || defined(OS_IOS) |
| +#if defined(OS_ANDROID) || defined(OS_IOS) || defined(OS_CHROMEOS) |
| + registry->RegisterBooleanPref(prefs::kEulaAccepted, |
|
Alexei Svitkine (slow)
2013/04/18 17:38:31
I believe this is the wrong place to put this.
Th
|
| + false, |
| + PrefRegistrySyncable::UNSYNCABLE_PREF); |
| +#endif // defined(OS_ANDROID) || defined(OS_IOS) || defined(OS_CHROMEOS) |
| } |