OLD | NEW |
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 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1424 #endif | 1424 #endif |
1425 #if defined(TOOLKIT_VIEWS) | 1425 #if defined(TOOLKIT_VIEWS) |
1426 { | 1426 { |
1427 "disable-hide-inactive-stacked-tab-close-buttons", | 1427 "disable-hide-inactive-stacked-tab-close-buttons", |
1428 IDS_FLAGS_DISABLE_HIDE_INACTIVE_STACKED_TAB_CLOSE_BUTTONS_NAME, | 1428 IDS_FLAGS_DISABLE_HIDE_INACTIVE_STACKED_TAB_CLOSE_BUTTONS_NAME, |
1429 IDS_FLAGS_DISABLE_HIDE_INACTIVE_STACKED_TAB_CLOSE_BUTTONS_DESCRIPTION, | 1429 IDS_FLAGS_DISABLE_HIDE_INACTIVE_STACKED_TAB_CLOSE_BUTTONS_DESCRIPTION, |
1430 kOsCrOS | kOsWin | kOsLinux, | 1430 kOsCrOS | kOsWin | kOsLinux, |
1431 SINGLE_VALUE_TYPE(switches::kDisableHideInactiveStackedTabCloseButtons) | 1431 SINGLE_VALUE_TYPE(switches::kDisableHideInactiveStackedTabCloseButtons) |
1432 }, | 1432 }, |
1433 #endif | 1433 #endif |
| 1434 #if defined(ENABLE_SPELLCHECK) |
| 1435 { |
| 1436 "enable-spelling-feedback-field-trial", |
| 1437 IDS_FLAGS_ENABLE_SPELLING_FEEDBACK_FIELD_TRIAL_NAME, |
| 1438 IDS_FLAGS_ENABLE_SPELLING_FEEDBACK_FIELD_TRIAL_DESCRIPTION, |
| 1439 kOsAll, |
| 1440 SINGLE_VALUE_TYPE(switches::kEnableSpellingFeedbackFieldTrial) |
| 1441 }, |
| 1442 #endif |
1434 { | 1443 { |
1435 "enable-webgl-draft-extensions", | 1444 "enable-webgl-draft-extensions", |
1436 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_NAME, | 1445 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_NAME, |
1437 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_DESCRIPTION, | 1446 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_DESCRIPTION, |
1438 kOsAll, | 1447 kOsAll, |
1439 SINGLE_VALUE_TYPE(switches::kEnableWebGLDraftExtensions) | 1448 SINGLE_VALUE_TYPE(switches::kEnableWebGLDraftExtensions) |
1440 }, | 1449 }, |
1441 { | 1450 { |
1442 "enable-web-midi", | 1451 "enable-web-midi", |
1443 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | 1452 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, |
(...skipping 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2871 } | 2880 } |
2872 | 2881 |
2873 const Experiment* GetExperiments(size_t* count) { | 2882 const Experiment* GetExperiments(size_t* count) { |
2874 *count = num_experiments; | 2883 *count = num_experiments; |
2875 return experiments; | 2884 return experiments; |
2876 } | 2885 } |
2877 | 2886 |
2878 } // namespace testing | 2887 } // namespace testing |
2879 | 2888 |
2880 } // namespace about_flags | 2889 } // namespace about_flags |
OLD | NEW |