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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 }, | 481 }, |
482 #if defined(USE_ASH) | 482 #if defined(USE_ASH) |
483 { | 483 { |
484 "aura-google-dialog-frames", | 484 "aura-google-dialog-frames", |
485 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME, | 485 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME, |
486 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION, | 486 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION, |
487 kOsWin | kOsLinux | kOsCrOS, | 487 kOsWin | kOsLinux | kOsCrOS, |
488 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames) | 488 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames) |
489 }, | 489 }, |
490 #endif | 490 #endif |
491 #if defined(USE_AURA) | |
492 { | |
493 "aura-disable-hold-mouse-moves", | |
494 IDS_FLAGS_AURA_DISABLE_HOLD_MOUSE_MOVES_NAME, | |
495 IDS_FLAGS_AURA_DISABLE_HOLD_MOUSE_MOVES_DESCRIPTION, | |
496 kOsWin | kOsLinux | kOsCrOS, | |
497 SINGLE_VALUE_TYPE(switches::kAuraDisableHoldMouseMoves) | |
498 }, | |
499 #endif // defined(USE_AURA) | |
500 { | 491 { |
501 "enable-gamepad", | 492 "enable-gamepad", |
502 IDS_FLAGS_ENABLE_GAMEPAD_NAME, | 493 IDS_FLAGS_ENABLE_GAMEPAD_NAME, |
503 IDS_FLAGS_ENABLE_GAMEPAD_DESCRIPTION, | 494 IDS_FLAGS_ENABLE_GAMEPAD_DESCRIPTION, |
504 kOsAll, | 495 kOsAll, |
505 SINGLE_VALUE_TYPE(switches::kEnableGamepad) | 496 SINGLE_VALUE_TYPE(switches::kEnableGamepad) |
506 }, | 497 }, |
507 { | 498 { |
508 "per-tile-painting", | 499 "per-tile-painting", |
509 IDS_FLAGS_PER_TILE_PAINTING_NAME, | 500 IDS_FLAGS_PER_TILE_PAINTING_NAME, |
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1190 } | 1181 } |
1191 | 1182 |
1192 const Experiment* GetExperiments(size_t* count) { | 1183 const Experiment* GetExperiments(size_t* count) { |
1193 *count = num_experiments; | 1184 *count = num_experiments; |
1194 return experiments; | 1185 return experiments; |
1195 } | 1186 } |
1196 | 1187 |
1197 } // namespace testing | 1188 } // namespace testing |
1198 | 1189 |
1199 } // namespace about_flags | 1190 } // namespace about_flags |
OLD | NEW |