diff options
Diffstat (limited to 'chrome/browser/profile.cc')
-rw-r--r-- | chrome/browser/profile.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc index 37cb457..44f8c17 100644 --- a/chrome/browser/profile.cc +++ b/chrome/browser/profile.cc @@ -54,15 +54,8 @@ void Profile::RegisterUserPrefs(PrefService* prefs) { prefs->RegisterBooleanPref(prefs::kSessionExitedCleanly, true); prefs->RegisterBooleanPref(prefs::kSafeBrowsingEnabled, true); // TODO(estade): IDS_SPELLCHECK_DICTIONARY should be an ASCII string. -#if defined(OS_MACOSX) - // MASSIVE HACK!!! We don't have localization working yet. Undo this once we - // do. TODO(port): take this out - prefs->RegisterStringPref(prefs::kSpellCheckDictionary, - L"IDS_SPELLCHECK_DICTIONARY"); -#elif defined(OS_WIN) || defined(OS_LINUX) prefs->RegisterLocalizedStringPref(prefs::kSpellCheckDictionary, IDS_SPELLCHECK_DICTIONARY); -#endif prefs->RegisterBooleanPref(prefs::kEnableSpellCheck, true); prefs->RegisterBooleanPref(prefs::kEnableUserScripts, false); prefs->RegisterBooleanPref(prefs::kEnableExtensions, false); |