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

Side by Side Diff: content/public/common/content_switches.cc

Issue 447863003: Using experiments to activate the DisplayList2DCanvas optimization (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase master + Fixing AboutFlagsHistogramTest.CheckHistograms test Created 6 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 "enable-transition-compositing"; 310 "enable-transition-compositing";
311 311
312 // Defer image decoding in WebKit until painting. 312 // Defer image decoding in WebKit until painting.
313 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; 313 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding";
314 314
315 // Enables delegated renderer. 315 // Enables delegated renderer.
316 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; 316 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer";
317 317
318 // Enables display list based 2d canvas implementation. 318 // Enables display list based 2d canvas implementation.
319 const char kEnableDisplayList2dCanvas[] = "enable-display-list-2d-canvas"; 319 const char kEnableDisplayList2dCanvas[] = "enable-display-list-2d-canvas";
320 const char kDisableDisplayList2dCanvas[] = "disable-display-list-2d-canvas";
320 321
321 // Enables restarting interrupted downloads. 322 // Enables restarting interrupted downloads.
322 const char kEnableDownloadResumption[] = "enable-download-resumption"; 323 const char kEnableDownloadResumption[] = "enable-download-resumption";
323 324
324 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). 325 // Enables support for Encrypted Media Extensions (e.g. MediaKeys).
325 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; 326 const char kEnableEncryptedMedia[] = "enable-encrypted-media";
326 327
327 // Enable experimental canvas features, e.g. canvas 2D context attributes 328 // Enable experimental canvas features, e.g. canvas 2D context attributes
328 const char kEnableExperimentalCanvasFeatures[] = 329 const char kEnableExperimentalCanvasFeatures[] =
329 "enable-experimental-canvas-features"; 330 "enable-experimental-canvas-features";
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 // Enable the Win32K process mitigation policy for renderer processes which 912 // Enable the Win32K process mitigation policy for renderer processes which
912 // prevents them from invoking user32 and gdi32 system calls which enter 913 // prevents them from invoking user32 and gdi32 system calls which enter
913 // the kernel. This is only supported on Windows 8 and beyond. 914 // the kernel. This is only supported on Windows 8 and beyond.
914 const char kEnableWin32kRendererLockDown[] 915 const char kEnableWin32kRendererLockDown[]
915 = "enable_win32k_renderer_lockdown"; 916 = "enable_win32k_renderer_lockdown";
916 #endif 917 #endif
917 918
918 // Don't dump stuff here, follow the same order as the header. 919 // Don't dump stuff here, follow the same order as the header.
919 920
920 } // namespace switches 921 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698