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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 SINGLE_VALUE_TYPE(switches::kEnableShadowDOM) | 547 SINGLE_VALUE_TYPE(switches::kEnableShadowDOM) |
548 }, | 548 }, |
549 { | 549 { |
550 "enable-style-scoped", | 550 "enable-style-scoped", |
551 IDS_FLAGS_STYLE_SCOPED_NAME, | 551 IDS_FLAGS_STYLE_SCOPED_NAME, |
552 IDS_FLAGS_STYLE_SCOPED_DESCRIPTION, | 552 IDS_FLAGS_STYLE_SCOPED_DESCRIPTION, |
553 kOsAll, | 553 kOsAll, |
554 SINGLE_VALUE_TYPE(switches::kEnableStyleScoped) | 554 SINGLE_VALUE_TYPE(switches::kEnableStyleScoped) |
555 }, | 555 }, |
556 { | 556 { |
| 557 "enable-css-regions", |
| 558 IDS_FLAGS_CSS_REGIONS_NAME, |
| 559 IDS_FLAGS_CSS_REGIONS_DESCRIPTION, |
| 560 kOsAll, |
| 561 SINGLE_VALUE_TYPE(switches::kEnableCssRegions) |
| 562 }, |
| 563 { |
557 "ntp-app-install-hint", | 564 "ntp-app-install-hint", |
558 IDS_FLAGS_APP_INSTALL_HINT_NAME, | 565 IDS_FLAGS_APP_INSTALL_HINT_NAME, |
559 IDS_FLAGS_APP_INSTALL_HINT_DESCRIPTION, | 566 IDS_FLAGS_APP_INSTALL_HINT_DESCRIPTION, |
560 kOsAll, | 567 kOsAll, |
561 SINGLE_VALUE_TYPE(switches::kNtpAppInstallHint) | 568 SINGLE_VALUE_TYPE(switches::kNtpAppInstallHint) |
562 }, | 569 }, |
563 { | 570 { |
564 "enable-extension-activity-ui", | 571 "enable-extension-activity-ui", |
565 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_NAME, | 572 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_NAME, |
566 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_DESCRIPTION, | 573 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_DESCRIPTION, |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1035 } | 1042 } |
1036 | 1043 |
1037 const Experiment* GetExperiments(size_t* count) { | 1044 const Experiment* GetExperiments(size_t* count) { |
1038 *count = num_experiments; | 1045 *count = num_experiments; |
1039 return experiments; | 1046 return experiments; |
1040 } | 1047 } |
1041 | 1048 |
1042 } // namespace testing | 1049 } // namespace testing |
1043 | 1050 |
1044 } // namespace about_flags | 1051 } // namespace about_flags |
OLD | NEW |