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

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

Issue 2869773003: Remove unused flag 'kDisableSmartVirtualKeyboard' and associated code. (Closed)
Patch Set: Fix accidental merge in the wrong direction Created 3 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 | « ash/virtual_keyboard_controller_unittest.cc ('k') | chrome/browser/flag_descriptions.cc » ('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 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after
1558 SINGLE_DISABLE_VALUE_TYPE(keyboard::switches::kDisableVoiceInput)}, 1558 SINGLE_DISABLE_VALUE_TYPE(keyboard::switches::kDisableVoiceInput)},
1559 {"experimental-input-view-features", 1559 {"experimental-input-view-features",
1560 flag_descriptions::kExperimentalInputViewFeaturesName, 1560 flag_descriptions::kExperimentalInputViewFeaturesName,
1561 flag_descriptions::kExperimentalInputViewFeaturesDescription, kOsCrOS, 1561 flag_descriptions::kExperimentalInputViewFeaturesDescription, kOsCrOS,
1562 SINGLE_VALUE_TYPE( 1562 SINGLE_VALUE_TYPE(
1563 keyboard::switches::kEnableExperimentalInputViewFeatures)}, 1563 keyboard::switches::kEnableExperimentalInputViewFeatures)},
1564 {"floating-virtual-keyboard", 1564 {"floating-virtual-keyboard",
1565 flag_descriptions::kFloatingVirtualKeyboardName, 1565 flag_descriptions::kFloatingVirtualKeyboardName,
1566 flag_descriptions::kFloatingVirtualKeyboardDescription, kOsCrOS, 1566 flag_descriptions::kFloatingVirtualKeyboardDescription, kOsCrOS,
1567 SINGLE_VALUE_TYPE(keyboard::switches::kEnableFloatingVirtualKeyboard)}, 1567 SINGLE_VALUE_TYPE(keyboard::switches::kEnableFloatingVirtualKeyboard)},
1568 {"smart-virtual-keyboard", flag_descriptions::kSmartVirtualKeyboardName,
1569 flag_descriptions::kSmartVirtualKeyboardDescription, kOsCrOS,
1570 SINGLE_DISABLE_VALUE_TYPE(
1571 keyboard::switches::kDisableSmartVirtualKeyboard)},
1572 {"gesture-typing", flag_descriptions::kGestureTypingName, 1568 {"gesture-typing", flag_descriptions::kGestureTypingName,
1573 flag_descriptions::kGestureTypingDescription, kOsCrOS, 1569 flag_descriptions::kGestureTypingDescription, kOsCrOS,
1574 SINGLE_DISABLE_VALUE_TYPE(keyboard::switches::kDisableGestureTyping)}, 1570 SINGLE_DISABLE_VALUE_TYPE(keyboard::switches::kDisableGestureTyping)},
1575 {"gesture-editing", flag_descriptions::kGestureEditingName, 1571 {"gesture-editing", flag_descriptions::kGestureEditingName,
1576 flag_descriptions::kGestureEditingDescription, kOsCrOS, 1572 flag_descriptions::kGestureEditingDescription, kOsCrOS,
1577 SINGLE_DISABLE_VALUE_TYPE(keyboard::switches::kDisableGestureEditing)}, 1573 SINGLE_DISABLE_VALUE_TYPE(keyboard::switches::kDisableGestureEditing)},
1578 #endif // OS_CHROMEOS 1574 #endif // OS_CHROMEOS
1579 {"enable-simple-cache-backend", flag_descriptions::kSimpleCacheBackendName, 1575 {"enable-simple-cache-backend", flag_descriptions::kSimpleCacheBackendName,
1580 flag_descriptions::kSimpleCacheBackendDescription, 1576 flag_descriptions::kSimpleCacheBackendDescription,
1581 kOsWin | kOsMac | kOsLinux | kOsCrOS, 1577 kOsWin | kOsMac | kOsLinux | kOsCrOS,
(...skipping 1582 matching lines...) Expand 10 before | Expand all | Expand 10 after
3164 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 3160 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
3165 3161
3166 const FeatureEntry* GetFeatureEntries(size_t* count) { 3162 const FeatureEntry* GetFeatureEntries(size_t* count) {
3167 *count = arraysize(kFeatureEntries); 3163 *count = arraysize(kFeatureEntries);
3168 return kFeatureEntries; 3164 return kFeatureEntries;
3169 } 3165 }
3170 3166
3171 } // namespace testing 3167 } // namespace testing
3172 3168
3173 } // namespace about_flags 3169 } // namespace about_flags
OLDNEW
« no previous file with comments | « ash/virtual_keyboard_controller_unittest.cc ('k') | chrome/browser/flag_descriptions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698