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

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

Issue 16535004: Introduce StickyKeys settings item with behind flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 5 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) 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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1568 matching lines...) Expand 10 before | Expand all | Expand 10 after
1579 switches::kHighDPISupport,"0") 1579 switches::kHighDPISupport,"0")
1580 }, 1580 },
1581 #if defined(OS_CHROMEOS) 1581 #if defined(OS_CHROMEOS)
1582 { 1582 {
1583 "enable-quickoffice-editing", 1583 "enable-quickoffice-editing",
1584 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_NAME, 1584 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_NAME,
1585 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_DESCRIPTION, 1585 IDS_FLAGS_ENABLE_QUICKOFFICE_DESKTOP_EDIT_DESCRIPTION,
1586 kOsCrOS, 1586 kOsCrOS,
1587 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeEdit), 1587 SINGLE_VALUE_TYPE(switches::kEnableQuickofficeEdit),
1588 }, 1588 },
1589 {
1590 "enable-sticky-keys",
1591 IDS_FLAGS_ENABLE_STICKY_KEYS_NAME,
1592 IDS_FLAGS_ENABLE_STICKY_KEYS_DESCRIPTION,
1593 kOsCrOS,
1594 SINGLE_VALUE_TYPE(switches::kEnableStickyKeys),
1595 },
1589 #endif 1596 #endif
1590 { 1597 {
1591 "enable-translate-settings", 1598 "enable-translate-settings",
1592 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_NAME, 1599 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_NAME,
1593 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_DESCRIPTION, 1600 IDS_FLAGS_ENABLE_TRANSLATE_SETTINGS_DESCRIPTION,
1594 kOsAll, 1601 kOsAll,
1595 SINGLE_VALUE_TYPE(switches::kEnableTranslateSettings) 1602 SINGLE_VALUE_TYPE(switches::kEnableTranslateSettings)
1596 }, 1603 },
1597 { 1604 {
1598 "enable-web-midi", 1605 "enable-web-midi",
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
2115 } 2122 }
2116 2123
2117 const Experiment* GetExperiments(size_t* count) { 2124 const Experiment* GetExperiments(size_t* count) {
2118 *count = num_experiments; 2125 *count = num_experiments;
2119 return experiments; 2126 return experiments;
2120 } 2127 }
2121 2128
2122 } // namespace testing 2129 } // namespace testing
2123 2130
2124 } // namespace about_flags 2131 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698