| 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 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1007 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, | 1007 IDS_FLAGS_ENABLE_ADVANCED_GESTURES_DESCRIPTION, |
| 1008 kOsCrOS, | 1008 kOsCrOS, |
| 1009 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), | 1009 SINGLE_VALUE_TYPE(ash::switches::kAshEnableAdvancedGestures), |
| 1010 }, | 1010 }, |
| 1011 { "ash-enable-tab-scrubbing", | 1011 { "ash-enable-tab-scrubbing", |
| 1012 IDS_FLAGS_ENABLE_TAB_SCRUBBING_NAME, | 1012 IDS_FLAGS_ENABLE_TAB_SCRUBBING_NAME, |
| 1013 IDS_FLAGS_ENABLE_TAB_SCRUBBING_DESCRIPTION, | 1013 IDS_FLAGS_ENABLE_TAB_SCRUBBING_DESCRIPTION, |
| 1014 kOsCrOS, | 1014 kOsCrOS, |
| 1015 SINGLE_VALUE_TYPE(switches::kAshEnableTabScrubbing), | 1015 SINGLE_VALUE_TYPE(switches::kAshEnableTabScrubbing), |
| 1016 }, | 1016 }, |
| 1017 { "ash-enable-workspace-scrubbing", |
| 1018 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_NAME, |
| 1019 IDS_FLAGS_ENABLE_WORKSPACE_SCRUBBING_DESCRIPTION, |
| 1020 kOsCrOS, |
| 1021 SINGLE_VALUE_TYPE(ash::switches::kAshEnableWorkspaceScrubbing), |
| 1022 }, |
| 1017 { "ash-enable-immersive-mode", | 1023 { "ash-enable-immersive-mode", |
| 1018 IDS_FLAGS_ENABLE_IMMERSIVE_MODE_NAME, | 1024 IDS_FLAGS_ENABLE_IMMERSIVE_MODE_NAME, |
| 1019 IDS_FLAGS_ENABLE_IMMERSIVE_MODE_DESCRIPTION, | 1025 IDS_FLAGS_ENABLE_IMMERSIVE_MODE_DESCRIPTION, |
| 1020 kOsCrOS, | 1026 kOsCrOS, |
| 1021 SINGLE_VALUE_TYPE(ash::switches::kAshImmersive), | 1027 SINGLE_VALUE_TYPE(ash::switches::kAshImmersive), |
| 1022 }, | 1028 }, |
| 1023 #if defined(OS_LINUX) | 1029 #if defined(OS_LINUX) |
| 1024 { "ash-enable-memory-monitor", | 1030 { "ash-enable-memory-monitor", |
| 1025 IDS_FLAGS_ENABLE_MEMORY_MONITOR_NAME, | 1031 IDS_FLAGS_ENABLE_MEMORY_MONITOR_NAME, |
| 1026 IDS_FLAGS_ENABLE_MEMORY_MONITOR_DESCRIPTION, | 1032 IDS_FLAGS_ENABLE_MEMORY_MONITOR_DESCRIPTION, |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1570 } | 1576 } |
| 1571 | 1577 |
| 1572 const Experiment* GetExperiments(size_t* count) { | 1578 const Experiment* GetExperiments(size_t* count) { |
| 1573 *count = num_experiments; | 1579 *count = num_experiments; |
| 1574 return experiments; | 1580 return experiments; |
| 1575 } | 1581 } |
| 1576 | 1582 |
| 1577 } // namespace testing | 1583 } // namespace testing |
| 1578 | 1584 |
| 1579 } // namespace about_flags | 1585 } // namespace about_flags |
| OLD | NEW |