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

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

Issue 12871012: Removing command line switch to disable deferred 2d canvas. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed call to setDeferred2dCanvasEnabled in webpreferences.cc Created 7 years, 9 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 | content/browser/web_contents/web_contents_impl.cc » ('j') | 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 MULTI_VALUE_TYPE(kGDIPresentChoices) 324 MULTI_VALUE_TYPE(kGDIPresentChoices)
325 }, 325 },
326 { 326 {
327 "disable-accelerated-2d-canvas", 327 "disable-accelerated-2d-canvas",
328 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_NAME, 328 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_NAME,
329 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_DESCRIPTION, 329 IDS_FLAGS_DISABLE_ACCELERATED_2D_CANVAS_DESCRIPTION,
330 kOsAll, 330 kOsAll,
331 SINGLE_VALUE_TYPE(switches::kDisableAccelerated2dCanvas) 331 SINGLE_VALUE_TYPE(switches::kDisableAccelerated2dCanvas)
332 }, 332 },
333 { 333 {
334 "disable-deferred-2d-canvas",
335 IDS_FLAGS_DISABLE_DEFERRED_2D_CANVAS_NAME,
336 IDS_FLAGS_DISABLE_DEFERRED_2D_CANVAS_DESCRIPTION,
337 kOsAll,
338 SINGLE_VALUE_TYPE(switches::kDisableDeferred2dCanvas)
339 },
340 {
341 "disable-threaded-animation", 334 "disable-threaded-animation",
342 IDS_FLAGS_DISABLE_THREADED_ANIMATION_NAME, 335 IDS_FLAGS_DISABLE_THREADED_ANIMATION_NAME,
343 IDS_FLAGS_DISABLE_THREADED_ANIMATION_DESCRIPTION, 336 IDS_FLAGS_DISABLE_THREADED_ANIMATION_DESCRIPTION,
344 kOsAll, 337 kOsAll,
345 SINGLE_VALUE_TYPE(cc::switches::kDisableThreadedAnimation) 338 SINGLE_VALUE_TYPE(cc::switches::kDisableThreadedAnimation)
346 }, 339 },
347 { 340 {
348 "composited-layer-borders", 341 "composited-layer-borders",
349 IDS_FLAGS_COMPOSITED_LAYER_BORDERS, 342 IDS_FLAGS_COMPOSITED_LAYER_BORDERS,
350 IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION, 343 IDS_FLAGS_COMPOSITED_LAYER_BORDERS_DESCRIPTION,
(...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after
1730 } 1723 }
1731 1724
1732 const Experiment* GetExperiments(size_t* count) { 1725 const Experiment* GetExperiments(size_t* count) {
1733 *count = num_experiments; 1726 *count = num_experiments;
1734 return experiments; 1727 return experiments;
1735 } 1728 }
1736 1729
1737 } // namespace testing 1730 } // namespace testing
1738 1731
1739 } // namespace about_flags 1732 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698