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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) | 623 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) |
624 }, | 624 }, |
625 #if defined(USE_ASH) | 625 #if defined(USE_ASH) |
626 { | 626 { |
627 "aura-google-dialog-frames", | 627 "aura-google-dialog-frames", |
628 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME, | 628 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME, |
629 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION, | 629 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION, |
630 kOsWin | kOsLinux | kOsCrOS, | 630 kOsWin | kOsLinux | kOsCrOS, |
631 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames) | 631 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames) |
632 }, | 632 }, |
633 { | |
634 "ash-disable-auto-window-placement", | |
635 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, | |
636 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION, | |
637 kOsWin | kOsLinux | kOsCrOS, | |
638 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement) | |
639 }, | |
640 #endif | 633 #endif |
641 { | 634 { |
642 "per-tile-painting", | 635 "per-tile-painting", |
643 IDS_FLAGS_PER_TILE_PAINTING_NAME, | 636 IDS_FLAGS_PER_TILE_PAINTING_NAME, |
644 IDS_FLAGS_PER_TILE_PAINTING_DESCRIPTION, | 637 IDS_FLAGS_PER_TILE_PAINTING_DESCRIPTION, |
645 #if defined(USE_SKIA) | 638 #if defined(USE_SKIA) |
646 kOsMac | kOsLinux | kOsCrOS, | 639 kOsMac | kOsLinux | kOsCrOS, |
647 #else | 640 #else |
648 0, | 641 0, |
649 #endif | 642 #endif |
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1499 } | 1492 } |
1500 | 1493 |
1501 const Experiment* GetExperiments(size_t* count) { | 1494 const Experiment* GetExperiments(size_t* count) { |
1502 *count = num_experiments; | 1495 *count = num_experiments; |
1503 return experiments; | 1496 return experiments; |
1504 } | 1497 } |
1505 | 1498 |
1506 } // namespace testing | 1499 } // namespace testing |
1507 | 1500 |
1508 } // namespace about_flags | 1501 } // namespace about_flags |
OLD | NEW |