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

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

Issue 7840041: Refactor some more BrowserMain code. Move core code that's required by all embedders to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments Created 9 years, 3 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 | « content/common/content_switches.h ('k') | content/content_browser.gypi » ('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) 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/common/content_switches.h" 5 #include "content/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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 496
497 // The same as kAuditHandles except all handles are enumerated. 497 // The same as kAuditHandles except all handles are enumerated.
498 const char kAuditAllHandles[] = "enable-handle-auditing-all"; 498 const char kAuditAllHandles[] = "enable-handle-auditing-all";
499 #endif 499 #endif
500 500
501 #if defined(OS_POSIX) && !defined(OS_MACOSX) 501 #if defined(OS_POSIX) && !defined(OS_MACOSX)
502 // Specify the amount the trackpad should scroll by. 502 // Specify the amount the trackpad should scroll by.
503 const char kScrollPixels[] = "scroll-pixels"; 503 const char kScrollPixels[] = "scroll-pixels";
504 #endif 504 #endif
505 505
506 #if defined(OS_MACOSX) || defined(OS_WIN)
507 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows)
508 // instead of NSS for SSL.
509 const char kUseSystemSSL[] = "use-system-ssl";
510 #endif
511
506 #if !defined(OFFICIAL_BUILD) 512 #if !defined(OFFICIAL_BUILD)
507 // Causes the renderer process to throw an assertion on launch. 513 // Causes the renderer process to throw an assertion on launch.
508 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; 514 const char kRendererCheckFalseTest[] = "renderer-check-false-test";
509 #endif 515 #endif
510 516
511 } // namespace switches 517 } // namespace switches
OLDNEW
« no previous file with comments | « content/common/content_switches.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698