| 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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 SINGLE_VALUE_TYPE(switches::kEnableFastUnload) | 676 SINGLE_VALUE_TYPE(switches::kEnableFastUnload) |
| 677 }, | 677 }, |
| 678 { | 678 { |
| 679 "enable-adview", | 679 "enable-adview", |
| 680 IDS_FLAGS_ENABLE_ADVIEW_NAME, | 680 IDS_FLAGS_ENABLE_ADVIEW_NAME, |
| 681 IDS_FLAGS_ENABLE_ADVIEW_DESCRIPTION, | 681 IDS_FLAGS_ENABLE_ADVIEW_DESCRIPTION, |
| 682 kOsDesktop, | 682 kOsDesktop, |
| 683 SINGLE_VALUE_TYPE(switches::kEnableAdview) | 683 SINGLE_VALUE_TYPE(switches::kEnableAdview) |
| 684 }, | 684 }, |
| 685 { | 685 { |
| 686 "enable-adview-src-attribute", | |
| 687 IDS_FLAGS_ENABLE_ADVIEW_SRC_ATTRIBUTE_NAME, | |
| 688 IDS_FLAGS_ENABLE_ADVIEW_SRC_ATTRIBUTE_DESCRIPTION, | |
| 689 kOsDesktop, | |
| 690 SINGLE_VALUE_TYPE(switches::kEnableAdviewSrcAttribute) | |
| 691 }, | |
| 692 { | |
| 693 "enable-app-window-controls", | 686 "enable-app-window-controls", |
| 694 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, | 687 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, |
| 695 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, | 688 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, |
| 696 kOsDesktop, | 689 kOsDesktop, |
| 697 SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls) | 690 SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls) |
| 698 }, | 691 }, |
| 699 { | 692 { |
| 700 "apps-new-install-bubble", | 693 "apps-new-install-bubble", |
| 701 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME, | 694 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME, |
| 702 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION, | 695 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION, |
| (...skipping 1803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2506 } | 2499 } |
| 2507 | 2500 |
| 2508 const Experiment* GetExperiments(size_t* count) { | 2501 const Experiment* GetExperiments(size_t* count) { |
| 2509 *count = num_experiments; | 2502 *count = num_experiments; |
| 2510 return experiments; | 2503 return experiments; |
| 2511 } | 2504 } |
| 2512 | 2505 |
| 2513 } // namespace testing | 2506 } // namespace testing |
| 2514 | 2507 |
| 2515 } // namespace about_flags | 2508 } // namespace about_flags |
| OLD | NEW |