| 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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 IDS_FLAGS_ENABLE_FAST_UNLOAD_NAME, | 677 IDS_FLAGS_ENABLE_FAST_UNLOAD_NAME, |
| 678 IDS_FLAGS_ENABLE_FAST_UNLOAD_DESCRIPTION, | 678 IDS_FLAGS_ENABLE_FAST_UNLOAD_DESCRIPTION, |
| 679 kOsAll, | 679 kOsAll, |
| 680 SINGLE_VALUE_TYPE(switches::kEnableFastUnload) | 680 SINGLE_VALUE_TYPE(switches::kEnableFastUnload) |
| 681 }, | 681 }, |
| 682 { | 682 { |
| 683 "enable-app-window-controls", | 683 "enable-app-window-controls", |
| 684 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, | 684 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, |
| 685 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, | 685 IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, |
| 686 kOsDesktop, | 686 kOsDesktop, |
| 687 SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls) | 687 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppWindowControls) |
| 688 }, | 688 }, |
| 689 { | 689 { |
| 690 "disable-hyperlink-auditing", | 690 "disable-hyperlink-auditing", |
| 691 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, | 691 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, |
| 692 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, | 692 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, |
| 693 kOsAll, | 693 kOsAll, |
| 694 SINGLE_VALUE_TYPE(switches::kNoPings) | 694 SINGLE_VALUE_TYPE(switches::kNoPings) |
| 695 }, | 695 }, |
| 696 #if defined(OS_ANDROID) | 696 #if defined(OS_ANDROID) |
| 697 { | 697 { |
| (...skipping 1775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2473 } | 2473 } |
| 2474 | 2474 |
| 2475 const Experiment* GetExperiments(size_t* count) { | 2475 const Experiment* GetExperiments(size_t* count) { |
| 2476 *count = num_experiments; | 2476 *count = num_experiments; |
| 2477 return experiments; | 2477 return experiments; |
| 2478 } | 2478 } |
| 2479 | 2479 |
| 2480 } // namespace testing | 2480 } // namespace testing |
| 2481 | 2481 |
| 2482 } // namespace about_flags | 2482 } // namespace about_flags |
| OLD | NEW |