| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |