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

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

Issue 1022143003: Removes flag --enable-new-md-input-view and add a opposite flag: --disable-new-md-input-view. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
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 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after
1300 keyboard::switches::kDisableInputView) 1300 keyboard::switches::kDisableInputView)
1301 }, 1301 },
1302 { 1302 {
1303 "enable-new-korean-ime", 1303 "enable-new-korean-ime",
1304 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_NAME, 1304 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_NAME,
1305 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_DESCRIPTION, 1305 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_DESCRIPTION,
1306 kOsCrOS, 1306 kOsCrOS,
1307 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme) 1307 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme)
1308 }, 1308 },
1309 { 1309 {
1310 "enable-new-md-input-view", 1310 "disable-new-md-input-view",
1311 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_NAME, 1311 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_NAME,
1312 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_DESCRIPTION, 1312 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_DESCRIPTION,
1313 kOsCrOS, 1313 kOsCrOS,
1314 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewMDInputView) 1314 SINGLE_VALUE_TYPE(chromeos::switches::kDisableNewMDInputView)
1315 }, 1315 },
1316 { 1316 {
1317 "enable-physical-keyboard-autocorrect", 1317 "enable-physical-keyboard-autocorrect",
1318 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_NAME, 1318 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_NAME,
1319 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_DESCRIPTION, 1319 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_DESCRIPTION,
1320 kOsCrOS, 1320 kOsCrOS,
1321 ENABLE_DISABLE_VALUE_TYPE( 1321 ENABLE_DISABLE_VALUE_TYPE(
1322 chromeos::switches::kEnablePhysicalKeyboardAutocorrect, 1322 chromeos::switches::kEnablePhysicalKeyboardAutocorrect,
1323 chromeos::switches::kDisablePhysicalKeyboardAutocorrect) 1323 chromeos::switches::kDisablePhysicalKeyboardAutocorrect)
1324 }, 1324 },
(...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after
2836 } 2836 }
2837 2837
2838 const Experiment* GetExperiments(size_t* count) { 2838 const Experiment* GetExperiments(size_t* count) {
2839 *count = num_experiments; 2839 *count = num_experiments;
2840 return experiments; 2840 return experiments;
2841 } 2841 }
2842 2842
2843 } // namespace testing 2843 } // namespace testing
2844 2844
2845 } // namespace about_flags 2845 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698