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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 SINGLE_VALUE_TYPE(switches::kEnableAdview) | 677 SINGLE_VALUE_TYPE(switches::kEnableAdview) |
678 }, | 678 }, |
679 { | 679 { |
680 "enable-app-window-controls", | 680 "enable-app-window-controls", |
681 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, | 681 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, |
682 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, | 682 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, |
683 kOsDesktop, | 683 kOsDesktop, |
684 SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls) | 684 SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls) |
685 }, | 685 }, |
686 { | 686 { |
687 "apps-new-install-bubble", | |
688 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME, | |
689 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION, | |
690 kOsDesktop, | |
691 SINGLE_VALUE_TYPE(switches::kAppsNewInstallBubble) | |
692 }, | |
693 { | |
694 "disable-hyperlink-auditing", | 687 "disable-hyperlink-auditing", |
695 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, | 688 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, |
696 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, | 689 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, |
697 kOsAll, | 690 kOsAll, |
698 SINGLE_VALUE_TYPE(switches::kNoPings) | 691 SINGLE_VALUE_TYPE(switches::kNoPings) |
699 }, | 692 }, |
700 #if defined(OS_ANDROID) | 693 #if defined(OS_ANDROID) |
701 { | 694 { |
702 "enable-new-ntp", | 695 "enable-new-ntp", |
703 IDS_FLAGS_ENABLE_NEW_NTP, | 696 IDS_FLAGS_ENABLE_NEW_NTP, |
(...skipping 1704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2408 } | 2401 } |
2409 | 2402 |
2410 const Experiment* GetExperiments(size_t* count) { | 2403 const Experiment* GetExperiments(size_t* count) { |
2411 *count = num_experiments; | 2404 *count = num_experiments; |
2412 return experiments; | 2405 return experiments; |
2413 } | 2406 } |
2414 | 2407 |
2415 } // namespace testing | 2408 } // namespace testing |
2416 | 2409 |
2417 } // namespace about_flags | 2410 } // namespace about_flags |
OLD | NEW |