| 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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 kOsWin | kOsLinux | kOsCrOS, | 776 kOsWin | kOsLinux | kOsCrOS, |
| 777 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoMaximizing) | 777 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoMaximizing) |
| 778 }, | 778 }, |
| 779 { | 779 { |
| 780 "ash-disable-auto-window-placement", | 780 "ash-disable-auto-window-placement", |
| 781 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, | 781 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, |
| 782 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION, | 782 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION, |
| 783 kOsWin | kOsLinux | kOsCrOS, | 783 kOsWin | kOsLinux | kOsCrOS, |
| 784 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement) | 784 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement) |
| 785 }, | 785 }, |
| 786 { | |
| 787 "ash-disable-per-app-launcher", | |
| 788 IDS_FLAGS_ASH_DISABLE_PER_APP_LAUNCHER_NAME, | |
| 789 IDS_FLAGS_ASH_DISABLE_PER_APP_LAUNCHER_DESCRIPTION, | |
| 790 kOsWin | kOsLinux | kOsCrOS, | |
| 791 SINGLE_VALUE_TYPE(ash::switches::kAshDisablePerAppLauncher) | |
| 792 }, | |
| 793 #endif | 786 #endif |
| 794 { | 787 { |
| 795 "per-tile-painting", | 788 "per-tile-painting", |
| 796 IDS_FLAGS_PER_TILE_PAINTING_NAME, | 789 IDS_FLAGS_PER_TILE_PAINTING_NAME, |
| 797 IDS_FLAGS_PER_TILE_PAINTING_DESCRIPTION, | 790 IDS_FLAGS_PER_TILE_PAINTING_DESCRIPTION, |
| 798 kOsMac | kOsLinux | kOsCrOS, | 791 kOsMac | kOsLinux | kOsCrOS, |
| 799 SINGLE_VALUE_TYPE(cc::switches::kEnablePerTilePainting) | 792 SINGLE_VALUE_TYPE(cc::switches::kEnablePerTilePainting) |
| 800 }, | 793 }, |
| 801 { | 794 { |
| 802 "enable-javascript-harmony", | 795 "enable-javascript-harmony", |
| (...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2121 } | 2114 } |
| 2122 | 2115 |
| 2123 const Experiment* GetExperiments(size_t* count) { | 2116 const Experiment* GetExperiments(size_t* count) { |
| 2124 *count = num_experiments; | 2117 *count = num_experiments; |
| 2125 return experiments; | 2118 return experiments; |
| 2126 } | 2119 } |
| 2127 | 2120 |
| 2128 } // namespace testing | 2121 } // namespace testing |
| 2129 | 2122 |
| 2130 } // namespace about_flags | 2123 } // namespace about_flags |
| OLD | NEW |