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

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

Issue 2763883002: Revert of Move some basic early process init into Service Manager (Closed)
Patch Set: Created 3 years, 9 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') | content/zygote/zygote_linux.cc » ('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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 #include "media/media_features.h" 7 #include "media/media_features.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 const char kRootLayerScrolls[] = "root-layer-scrolls"; 778 const char kRootLayerScrolls[] = "root-layer-scrolls";
779 779
780 // Causes the process to run as a sandbox IPC subprocess. 780 // Causes the process to run as a sandbox IPC subprocess.
781 const char kSandboxIPCProcess[] = "sandbox-ipc"; 781 const char kSandboxIPCProcess[] = "sandbox-ipc";
782 782
783 // Enables or disables scroll end effect in response to vertical overscroll. 783 // Enables or disables scroll end effect in response to vertical overscroll.
784 // Set the value to '1' to enable the feature, and set to '0' to disable. 784 // Set the value to '1' to enable the feature, and set to '0' to disable.
785 // Defaults to disabled. 785 // Defaults to disabled.
786 const char kScrollEndEffect[] = "scroll-end-effect"; 786 const char kScrollEndEffect[] = "scroll-end-effect";
787 787
788 // Describes the file descriptors passed to the child process. List:
789 // <file id from manifest>:<global descriptor id>,<file id string from manifest>
790 // :<global descriptor id>,...
791 const char kSharedFiles[] = "shared-files";
792
788 // Visibly render a border around paint rects in the web page to help debug 793 // Visibly render a border around paint rects in the web page to help debug
789 // and study painting behavior. 794 // and study painting behavior.
790 const char kShowPaintRects[] = "show-paint-rects"; 795 const char kShowPaintRects[] = "show-paint-rects";
791 796
792 // Runs the renderer and plugins in the same process as the browser 797 // Runs the renderer and plugins in the same process as the browser
793 const char kSingleProcess[] = "single-process"; 798 const char kSingleProcess[] = "single-process";
794 799
795 // Enforces a one-site-per-process security policy: 800 // Enforces a one-site-per-process security policy:
796 // * Each renderer process, for its whole lifetime, is dedicated to rendering 801 // * Each renderer process, for its whole lifetime, is dedicated to rendering
797 // pages for just one site. 802 // pages for just one site.
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
1078 // the given directory. Used primarily to gather samples for IPC fuzzing. 1083 // the given directory. Used primarily to gather samples for IPC fuzzing.
1079 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1084 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1080 1085
1081 // Specifies the testcase used by the IPC fuzzer. 1086 // Specifies the testcase used by the IPC fuzzer.
1082 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1087 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1083 #endif 1088 #endif
1084 1089
1085 // Don't dump stuff here, follow the same order as the header. 1090 // Don't dump stuff here, follow the same order as the header.
1086 1091
1087 } // namespace switches 1092 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/zygote/zygote_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698