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

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

Issue 25863004: Merge 226626 "Remove disable-gpu-vsync about:flags entry" (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1650/src/
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 SINGLE_VALUE_TYPE(cc::switches::kShowFPSCounter) 436 SINGLE_VALUE_TYPE(cc::switches::kShowFPSCounter)
437 }, 437 },
438 { 438 {
439 "accelerated-filters", 439 "accelerated-filters",
440 IDS_FLAGS_ACCELERATED_FILTERS, 440 IDS_FLAGS_ACCELERATED_FILTERS,
441 IDS_FLAGS_ACCELERATED_FILTERS_DESCRIPTION, 441 IDS_FLAGS_ACCELERATED_FILTERS_DESCRIPTION,
442 kOsAll, 442 kOsAll,
443 SINGLE_VALUE_TYPE(switches::kEnableAcceleratedFilters) 443 SINGLE_VALUE_TYPE(switches::kEnableAcceleratedFilters)
444 }, 444 },
445 { 445 {
446 "disable-gpu-vsync",
447 IDS_FLAGS_DISABLE_GPU_VSYNC_NAME,
448 IDS_FLAGS_DISABLE_GPU_VSYNC_DESCRIPTION,
449 kOsDesktop,
450 SINGLE_VALUE_TYPE(switches::kDisableGpuVsync)
451 },
452 {
453 "disable-webgl", 446 "disable-webgl",
454 IDS_FLAGS_DISABLE_WEBGL_NAME, 447 IDS_FLAGS_DISABLE_WEBGL_NAME,
455 IDS_FLAGS_DISABLE_WEBGL_DESCRIPTION, 448 IDS_FLAGS_DISABLE_WEBGL_DESCRIPTION,
456 kOsAll, 449 kOsAll,
457 SINGLE_VALUE_TYPE(switches::kDisableExperimentalWebGL) 450 SINGLE_VALUE_TYPE(switches::kDisableExperimentalWebGL)
458 }, 451 },
459 { 452 {
460 "enable-d3d11", 453 "enable-d3d11",
461 IDS_FLAGS_ENABLE_D3D11_NAME, 454 IDS_FLAGS_ENABLE_D3D11_NAME,
462 IDS_FLAGS_ENABLE_D3D11_DESCRIPTION, 455 IDS_FLAGS_ENABLE_D3D11_DESCRIPTION,
(...skipping 1797 matching lines...) Expand 10 before | Expand all | Expand 10 after
2260 } 2253 }
2261 2254
2262 const Experiment* GetExperiments(size_t* count) { 2255 const Experiment* GetExperiments(size_t* count) {
2263 *count = num_experiments; 2256 *count = num_experiments;
2264 return experiments; 2257 return experiments;
2265 } 2258 }
2266 2259
2267 } // namespace testing 2260 } // namespace testing
2268 2261
2269 } // namespace about_flags 2262 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698