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

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

Issue 8771056: Add a command-line switch --enable-per-tile-painting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: enable-per-tile-painting -> enable-per-tile-drawing Created 9 years 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) 548 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows)
549 // instead of NSS for SSL. 549 // instead of NSS for SSL.
550 const char kUseSystemSSL[] = "use-system-ssl"; 550 const char kUseSystemSSL[] = "use-system-ssl";
551 #endif 551 #endif
552 552
553 #if !defined(OFFICIAL_BUILD) 553 #if !defined(OFFICIAL_BUILD)
554 // Causes the renderer process to throw an assertion on launch. 554 // Causes the renderer process to throw an assertion on launch.
555 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; 555 const char kRendererCheckFalseTest[] = "renderer-check-false-test";
556 #endif 556 #endif
557 557
558 // Enable per-tile page drawing.
559 // Please note that this flag is honored only if chromium is compiled with
560 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1
561 // in build/features_override.gypi.
562 const char kEnablePerTileDrawing[] = "enable-per-tile-drawing";
563
558 } // namespace switches 564 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698