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

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

Issue 10831216: Add an about:flags entry for CSS Shaders. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added my gmail address to AUTHORS. Created 8 years, 4 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
« AUTHORS ('K') | « 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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 SINGLE_VALUE_TYPE(switches::kEnableStyleScoped) 618 SINGLE_VALUE_TYPE(switches::kEnableStyleScoped)
619 }, 619 },
620 { 620 {
621 "enable-css-regions", 621 "enable-css-regions",
622 IDS_FLAGS_CSS_REGIONS_NAME, 622 IDS_FLAGS_CSS_REGIONS_NAME,
623 IDS_FLAGS_CSS_REGIONS_DESCRIPTION, 623 IDS_FLAGS_CSS_REGIONS_DESCRIPTION,
624 kOsAll, 624 kOsAll,
625 SINGLE_VALUE_TYPE(switches::kEnableCssRegions) 625 SINGLE_VALUE_TYPE(switches::kEnableCssRegions)
626 }, 626 },
627 { 627 {
628 "enable-css-shaders",
629 IDS_FLAGS_CSS_SHADERS_NAME,
630 IDS_FLAGS_CSS_SHADERS_DESCRIPTION,
631 kOsAll,
632 SINGLE_VALUE_TYPE(switches::kEnableCssShaders)
633 },
634 {
628 "enable-css-variables", 635 "enable-css-variables",
629 IDS_FLAGS_CSS_VARIABLES_NAME, 636 IDS_FLAGS_CSS_VARIABLES_NAME,
630 IDS_FLAGS_CSS_VARIABLES_DESCRIPTION, 637 IDS_FLAGS_CSS_VARIABLES_DESCRIPTION,
631 kOsAll, 638 kOsAll,
632 SINGLE_VALUE_TYPE(switches::kEnableCssVariables) 639 SINGLE_VALUE_TYPE(switches::kEnableCssVariables)
633 }, 640 },
634 { 641 {
635 "enable-extension-activity-ui", 642 "enable-extension-activity-ui",
636 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_NAME, 643 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_NAME,
637 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_DESCRIPTION, 644 IDS_FLAGS_ENABLE_EXTENSION_ACTIVITY_UI_DESCRIPTION,
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
1334 } 1341 }
1335 1342
1336 const Experiment* GetExperiments(size_t* count) { 1343 const Experiment* GetExperiments(size_t* count) {
1337 *count = num_experiments; 1344 *count = num_experiments;
1338 return experiments; 1345 return experiments;
1339 } 1346 }
1340 1347
1341 } // namespace testing 1348 } // namespace testing
1342 1349
1343 } // namespace about_flags 1350 } // namespace about_flags
OLDNEW
« AUTHORS ('K') | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698