Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 10913254: Add an about:flags entry for CSS Shaders. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 SINGLE_VALUE_TYPE(switches::kEnableStyleScoped) 622 SINGLE_VALUE_TYPE(switches::kEnableStyleScoped)
623 }, 623 },
624 { 624 {
625 "enable-css-regions", 625 "enable-css-regions",
626 IDS_FLAGS_CSS_REGIONS_NAME, 626 IDS_FLAGS_CSS_REGIONS_NAME,
627 IDS_FLAGS_CSS_REGIONS_DESCRIPTION, 627 IDS_FLAGS_CSS_REGIONS_DESCRIPTION,
628 kOsAll, 628 kOsAll,
629 SINGLE_VALUE_TYPE(switches::kEnableCssRegions) 629 SINGLE_VALUE_TYPE(switches::kEnableCssRegions)
630 }, 630 },
631 { 631 {
632 "enable-css-shaders",
633 IDS_FLAGS_CSS_SHADERS_NAME,
634 IDS_FLAGS_CSS_SHADERS_DESCRIPTION,
635 kOsAll,
636 SINGLE_VALUE_TYPE(switches::kEnableCssShaders)
637 },
638 {
632 "enable-css-variables", 639 "enable-css-variables",
633 IDS_FLAGS_CSS_VARIABLES_NAME, 640 IDS_FLAGS_CSS_VARIABLES_NAME,
634 IDS_FLAGS_CSS_VARIABLES_DESCRIPTION, 641 IDS_FLAGS_CSS_VARIABLES_DESCRIPTION,
635 kOsAll, 642 kOsAll,
636 SINGLE_VALUE_TYPE(switches::kEnableCssVariables) 643 SINGLE_VALUE_TYPE(switches::kEnableCssVariables)
637 }, 644 },
638 { 645 {
639 "enable-extension-activity-ui", 646 "enable-extension-activity-ui",
640 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_NAME, 647 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_NAME,
641 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_DESCRIPTION, 648 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_DESCRIPTION,
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
1376 } 1383 }
1377 1384
1378 const Experiment* GetExperiments(size_t* count) { 1385 const Experiment* GetExperiments(size_t* count) {
1379 *count = num_experiments; 1386 *count = num_experiments;
1380 return experiments; 1387 return experiments;
1381 } 1388 }
1382 1389
1383 } // namespace testing 1390 } // namespace testing
1384 1391
1385 } // namespace about_flags 1392 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698