| 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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 SINGLE_VALUE_TYPE(switches::kEnablePnacl) | 460 SINGLE_VALUE_TYPE(switches::kEnablePnacl) |
| 461 }, | 461 }, |
| 462 { | 462 { |
| 463 "extension-apis", // FLAGS:RECORD_UMA | 463 "extension-apis", // FLAGS:RECORD_UMA |
| 464 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME, | 464 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME, |
| 465 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION, | 465 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION, |
| 466 kOsDesktop, | 466 kOsDesktop, |
| 467 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis) | 467 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis) |
| 468 }, | 468 }, |
| 469 { | 469 { |
| 470 "extensions-on-chrome-urls", |
| 471 IDS_FLAGS_EXTENSIONS_ON_CHROME_URLS_NAME, |
| 472 IDS_FLAGS_EXTENSIONS_ON_CHROME_URLS_DESCRIPTION, |
| 473 kOsAll, |
| 474 SINGLE_VALUE_TYPE(switches::kExtensionsOnChromeURLs) |
| 475 }, |
| 476 { |
| 470 "action-box", | 477 "action-box", |
| 471 IDS_FLAGS_ACTION_BOX_NAME, | 478 IDS_FLAGS_ACTION_BOX_NAME, |
| 472 IDS_FLAGS_ACTION_BOX_DESCRIPTION, | 479 IDS_FLAGS_ACTION_BOX_DESCRIPTION, |
| 473 kOsDesktop, | 480 kOsDesktop, |
| 474 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(switches::kActionBox, "1", | 481 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(switches::kActionBox, "1", |
| 475 switches::kActionBox, "0") | 482 switches::kActionBox, "0") |
| 476 }, | 483 }, |
| 477 { | 484 { |
| 478 "script-badges", | 485 "script-badges", |
| 479 IDS_FLAGS_SCRIPT_BADGES_NAME, | 486 IDS_FLAGS_SCRIPT_BADGES_NAME, |
| (...skipping 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1730 } | 1737 } |
| 1731 | 1738 |
| 1732 const Experiment* GetExperiments(size_t* count) { | 1739 const Experiment* GetExperiments(size_t* count) { |
| 1733 *count = num_experiments; | 1740 *count = num_experiments; |
| 1734 return experiments; | 1741 return experiments; |
| 1735 } | 1742 } |
| 1736 | 1743 |
| 1737 } // namespace testing | 1744 } // namespace testing |
| 1738 | 1745 |
| 1739 } // namespace about_flags | 1746 } // namespace about_flags |
| OLD | NEW |