| 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 <algorithm> | 7 #include <algorithm> |
| 8 #include <iterator> | 8 #include <iterator> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 IDS_FLAGS_DISABLE_ASYNCHRONOUS_SPELLCHECKING, | 688 IDS_FLAGS_DISABLE_ASYNCHRONOUS_SPELLCHECKING, |
| 689 IDS_FLAGS_DISABLE_ASYNCHRONOUS_SPELLCHECKING_DESCRIPTION, | 689 IDS_FLAGS_DISABLE_ASYNCHRONOUS_SPELLCHECKING_DESCRIPTION, |
| 690 kOsWin | kOsLinux | kOsCrOS, | 690 kOsWin | kOsLinux | kOsCrOS, |
| 691 SINGLE_VALUE_TYPE(switches::kDisableAsynchronousSpellChecking) | 691 SINGLE_VALUE_TYPE(switches::kDisableAsynchronousSpellChecking) |
| 692 }, | 692 }, |
| 693 #endif | 693 #endif |
| 694 { | 694 { |
| 695 "touch-optimized-ui", | 695 "touch-optimized-ui", |
| 696 IDS_FLAGS_TOUCH_OPTIMIZED_UI_NAME, | 696 IDS_FLAGS_TOUCH_OPTIMIZED_UI_NAME, |
| 697 IDS_FLAGS_TOUCH_OPTIMIZED_UI_DESCRIPTION, | 697 IDS_FLAGS_TOUCH_OPTIMIZED_UI_DESCRIPTION, |
| 698 kOsWin | kOsCrOS, | 698 kOsWin, |
| 699 MULTI_VALUE_TYPE(kTouchOptimizedUIChoices) | 699 MULTI_VALUE_TYPE(kTouchOptimizedUIChoices) |
| 700 }, | 700 }, |
| 701 { | 701 { |
| 702 "enable-touch-events", | 702 "enable-touch-events", |
| 703 IDS_ENABLE_TOUCH_EVENTS_NAME, | 703 IDS_ENABLE_TOUCH_EVENTS_NAME, |
| 704 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION, | 704 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION, |
| 705 kOsAll, | 705 kOsAll, |
| 706 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents) | 706 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents) |
| 707 }, | 707 }, |
| 708 #if defined(OS_CHROMEOS) | 708 #if defined(OS_CHROMEOS) |
| (...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1334 } | 1334 } |
| 1335 | 1335 |
| 1336 const Experiment* GetExperiments(size_t* count) { | 1336 const Experiment* GetExperiments(size_t* count) { |
| 1337 *count = num_experiments; | 1337 *count = num_experiments; |
| 1338 return experiments; | 1338 return experiments; |
| 1339 } | 1339 } |
| 1340 | 1340 |
| 1341 } // namespace testing | 1341 } // namespace testing |
| 1342 | 1342 |
| 1343 } // namespace about_flags | 1343 } // namespace about_flags |
| OLD | NEW |