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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 1132333002: Enables new Korean IME by default for M44. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed the old hangul input methods from the google builds. Created 5 years, 7 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/browser_resources.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after
1405 }, 1405 },
1406 { 1406 {
1407 "enable-input-view", 1407 "enable-input-view",
1408 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, 1408 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME,
1409 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, 1409 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION,
1410 kOsCrOS, 1410 kOsCrOS,
1411 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView, 1411 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView,
1412 keyboard::switches::kDisableInputView) 1412 keyboard::switches::kDisableInputView)
1413 }, 1413 },
1414 { 1414 {
1415 "enable-new-korean-ime", 1415 "disable-new-korean-ime",
1416 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_NAME, 1416 IDS_FLAGS_DISABLE_NEW_KOREAN_IME_NAME,
1417 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_DESCRIPTION, 1417 IDS_FLAGS_DISABLE_NEW_KOREAN_IME_DESCRIPTION,
1418 kOsCrOS, 1418 kOsCrOS,
1419 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme) 1419 SINGLE_VALUE_TYPE(chromeos::switches::kDisableNewKoreanIme)
1420 }, 1420 },
1421 { 1421 {
1422 "disable-new-md-input-view", 1422 "disable-new-md-input-view",
1423 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_NAME, 1423 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_NAME,
1424 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_DESCRIPTION, 1424 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_DESCRIPTION,
1425 kOsCrOS, 1425 kOsCrOS,
1426 SINGLE_VALUE_TYPE(keyboard::switches::kDisableNewMDInputView) 1426 SINGLE_VALUE_TYPE(keyboard::switches::kDisableNewMDInputView)
1427 }, 1427 },
1428 { 1428 {
1429 "enable-physical-keyboard-autocorrect", 1429 "enable-physical-keyboard-autocorrect",
(...skipping 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after
3027 } 3027 }
3028 3028
3029 const Experiment* GetExperiments(size_t* count) { 3029 const Experiment* GetExperiments(size_t* count) {
3030 *count = num_experiments; 3030 *count = num_experiments;
3031 return experiments; 3031 return experiments;
3032 } 3032 }
3033 3033
3034 } // namespace testing 3034 } // namespace testing
3035 3035
3036 } // namespace about_flags 3036 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/browser_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698