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

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

Issue 2613653003: 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
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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 const char kRootLayerScrolls[] = "root-layer-scrolls"; 779 const char kRootLayerScrolls[] = "root-layer-scrolls";
780 780
781 // Causes the process to run as a sandbox IPC subprocess. 781 // Causes the process to run as a sandbox IPC subprocess.
782 const char kSandboxIPCProcess[] = "sandbox-ipc"; 782 const char kSandboxIPCProcess[] = "sandbox-ipc";
783 783
784 // Enables or disables scroll end effect in response to vertical overscroll. 784 // Enables or disables scroll end effect in response to vertical overscroll.
785 // Set the value to '1' to enable the feature, and set to '0' to disable. 785 // Set the value to '1' to enable the feature, and set to '0' to disable.
786 // Defaults to disabled. 786 // Defaults to disabled.
787 const char kScrollEndEffect[] = "scroll-end-effect"; 787 const char kScrollEndEffect[] = "scroll-end-effect";
788 788
789 // Describes the file descriptors passed to the child process. List:
790 // <file id from manifest>:<global descriptor id>,<file id string from manifest>
791 // :<global descriptor id>,...
792 const char kSharedFiles[] = "shared-files";
793
794 // Visibly render a border around paint rects in the web page to help debug 789 // Visibly render a border around paint rects in the web page to help debug
795 // and study painting behavior. 790 // and study painting behavior.
796 const char kShowPaintRects[] = "show-paint-rects"; 791 const char kShowPaintRects[] = "show-paint-rects";
797 792
798 // Runs the renderer and plugins in the same process as the browser 793 // Runs the renderer and plugins in the same process as the browser
799 const char kSingleProcess[] = "single-process"; 794 const char kSingleProcess[] = "single-process";
800 795
801 // Enforces a one-site-per-process security policy: 796 // Enforces a one-site-per-process security policy:
802 // * Each renderer process, for its whole lifetime, is dedicated to rendering 797 // * Each renderer process, for its whole lifetime, is dedicated to rendering
803 // pages for just one site. 798 // pages for just one site.
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
1084 // the given directory. Used primarily to gather samples for IPC fuzzing. 1079 // the given directory. Used primarily to gather samples for IPC fuzzing.
1085 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1080 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1086 1081
1087 // Specifies the testcase used by the IPC fuzzer. 1082 // Specifies the testcase used by the IPC fuzzer.
1088 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1083 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1089 #endif 1084 #endif
1090 1085
1091 // Don't dump stuff here, follow the same order as the header. 1086 // Don't dump stuff here, follow the same order as the header.
1092 1087
1093 } // namespace switches 1088 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698