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 <iterator> | 7 #include <iterator> |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <utility> | 10 #include <utility> |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
687 IDS_FLAGS_ENABLE_FAST_UNLOAD_NAME, | 687 IDS_FLAGS_ENABLE_FAST_UNLOAD_NAME, |
688 IDS_FLAGS_ENABLE_FAST_UNLOAD_DESCRIPTION, | 688 IDS_FLAGS_ENABLE_FAST_UNLOAD_DESCRIPTION, |
689 kOsAll, | 689 kOsAll, |
690 SINGLE_VALUE_TYPE(switches::kEnableFastUnload) | 690 SINGLE_VALUE_TYPE(switches::kEnableFastUnload) |
691 }, | 691 }, |
692 { | 692 { |
693 "enable-app-window-controls", | 693 "enable-app-window-controls", |
694 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, | 694 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, |
695 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, | 695 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, |
696 kOsDesktop, | 696 kOsDesktop, |
697 SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls) | 697 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppWindowControls) |
698 }, | 698 }, |
699 { | 699 { |
700 "disable-hyperlink-auditing", | 700 "disable-hyperlink-auditing", |
701 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, | 701 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, |
702 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, | 702 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, |
703 kOsAll, | 703 kOsAll, |
704 SINGLE_VALUE_TYPE(switches::kNoPings) | 704 SINGLE_VALUE_TYPE(switches::kNoPings) |
705 }, | 705 }, |
706 #if defined(OS_ANDROID) | 706 #if defined(OS_ANDROID) |
707 { | 707 { |
(...skipping 1784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2492 } | 2492 } |
2493 | 2493 |
2494 const Experiment* GetExperiments(size_t* count) { | 2494 const Experiment* GetExperiments(size_t* count) { |
2495 *count = num_experiments; | 2495 *count = num_experiments; |
2496 return experiments; | 2496 return experiments; |
2497 } | 2497 } |
2498 | 2498 |
2499 } // namespace testing | 2499 } // namespace testing |
2500 | 2500 |
2501 } // namespace about_flags | 2501 } // namespace about_flags |
OLD | NEW |