Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: chrome/browser/chromeos/language_preferences.cc

Issue 7811017: Remove rerely used configuration items for the Japanese IME to simplify the dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "chrome/browser/chromeos/language_preferences.h" 6 #include "chrome/browser/chromeos/language_preferences.h"
7 #include "chrome/common/pref_names.h" 7 #include "chrome/common/pref_names.h"
8 #include "grit/generated_resources.h" 8 #include "grit/generated_resources.h"
9 9
10 namespace chromeos { 10 namespace chromeos {
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 { prefs::kLanguageMozcIncognitoMode, 246 { prefs::kLanguageMozcIncognitoMode,
247 false, 247 false,
248 "incognito_mode", 248 "incognito_mode",
249 IDS_MOZC(INCOGNITO_MODE), 249 IDS_MOZC(INCOGNITO_MODE),
250 PrefService::SYNCABLE_PREF }, 250 PrefService::SYNCABLE_PREF },
251 { prefs::kLanguageMozcUseAutoImeTurnOff, 251 { prefs::kLanguageMozcUseAutoImeTurnOff,
252 true, 252 true,
253 "use_auto_ime_turn_off", 253 "use_auto_ime_turn_off",
254 IDS_MOZC(USE_AUTO_IME_TURN_OFF), 254 IDS_MOZC(USE_AUTO_IME_TURN_OFF),
255 PrefService::SYNCABLE_PREF }, 255 PrefService::SYNCABLE_PREF },
256 { prefs::kLanguageMozcUseDateConversion,
257 true,
258 "use_date_conversion",
259 IDS_MOZC(USE_DATE_CONVERSION),
260 PrefService::SYNCABLE_PREF },
261 { prefs::kLanguageMozcUseSingleKanjiConversion,
262 true,
263 "use_single_kanji_conversion",
264 IDS_MOZC(USE_SINGLE_KANJI_CONVERSION),
265 PrefService::SYNCABLE_PREF },
266 { prefs::kLanguageMozcUseSymbolConversion,
267 true,
268 "use_symbol_conversion",
269 IDS_MOZC(USE_SYMBOL_CONVERSION),
270 PrefService::SYNCABLE_PREF },
271 { prefs::kLanguageMozcUseNumberConversion,
272 true,
273 "use_number_conversion",
274 IDS_MOZC(USE_NUMBER_CONVERSION),
275 PrefService::SYNCABLE_PREF },
276 { prefs::kLanguageMozcUseHistorySuggest, 256 { prefs::kLanguageMozcUseHistorySuggest,
277 true, 257 true,
278 "use_history_suggest", 258 "use_history_suggest",
279 IDS_MOZC(USE_HISTORY_SUGGEST), 259 IDS_MOZC(USE_HISTORY_SUGGEST),
280 PrefService::SYNCABLE_PREF }, 260 PrefService::SYNCABLE_PREF },
281 { prefs::kLanguageMozcUseDictionarySuggest, 261 { prefs::kLanguageMozcUseDictionarySuggest,
282 true, 262 true,
283 "use_dictionary_suggest", 263 "use_dictionary_suggest",
284 IDS_MOZC(USE_DICTIONARY_SUGGEST), 264 IDS_MOZC(USE_DICTIONARY_SUGGEST),
285 PrefService::SYNCABLE_PREF }, 265 PrefService::SYNCABLE_PREF },
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 395
416 // --------------------------------------------------------------------------- 396 // ---------------------------------------------------------------------------
417 // For keyboard stuff 397 // For keyboard stuff
418 // --------------------------------------------------------------------------- 398 // ---------------------------------------------------------------------------
419 const int kXkbAutoRepeatDelayInMs = 500; 399 const int kXkbAutoRepeatDelayInMs = 500;
420 const int kXkbAutoRepeatIntervalInMs = 50; 400 const int kXkbAutoRepeatIntervalInMs = 50;
421 const char kPreferredKeyboardLayout[] = "PreferredKeyboardLayout"; 401 const char kPreferredKeyboardLayout[] = "PreferredKeyboardLayout";
422 402
423 } // namespace language_prefs 403 } // namespace language_prefs
424 } // namespace chromeos 404 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/language_preferences.h ('k') | chrome/browser/resources/options/chromeos/language_mozc_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698