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