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

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

Issue 8678037: Render Core Animation plugins through WebKit's compositor rather than (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 // Specify the amount the trackpad should scroll by. 543 // Specify the amount the trackpad should scroll by.
544 const char kScrollPixels[] = "scroll-pixels"; 544 const char kScrollPixels[] = "scroll-pixels";
545 #endif 545 #endif
546 546
547 #if defined(OS_MACOSX) || defined(OS_WIN) 547 #if defined(OS_MACOSX) || defined(OS_WIN)
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(OS_MACOSX)
554 const char kDisableCompositedCoreAnimationPlugins[] =
555 "disable-composited-core-animation-plugins";
556 #endif
557
553 #if !defined(OFFICIAL_BUILD) 558 #if !defined(OFFICIAL_BUILD)
554 // Causes the renderer process to throw an assertion on launch. 559 // Causes the renderer process to throw an assertion on launch.
555 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; 560 const char kRendererCheckFalseTest[] = "renderer-check-false-test";
556 #endif 561 #endif
557 562
558 } // namespace switches 563 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698