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 | |
793 // Visibly render a border around paint rects in the web page to help debug | 788 // Visibly render a border around paint rects in the web page to help debug |
794 // and study painting behavior. | 789 // and study painting behavior. |
795 const char kShowPaintRects[] = "show-paint-rects"; | 790 const char kShowPaintRects[] = "show-paint-rects"; |
796 | 791 |
797 // Runs the renderer and plugins in the same process as the browser | 792 // Runs the renderer and plugins in the same process as the browser |
798 const char kSingleProcess[] = "single-process"; | 793 const char kSingleProcess[] = "single-process"; |
799 | 794 |
800 // Enforces a one-site-per-process security policy: | 795 // Enforces a one-site-per-process security policy: |
801 // * Each renderer process, for its whole lifetime, is dedicated to rendering | 796 // * Each renderer process, for its whole lifetime, is dedicated to rendering |
802 // pages for just one site. | 797 // pages for just one site. |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1083 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1078 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1084 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1079 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1085 | 1080 |
1086 // Specifies the testcase used by the IPC fuzzer. | 1081 // Specifies the testcase used by the IPC fuzzer. |
1087 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1082 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1088 #endif | 1083 #endif |
1089 | 1084 |
1090 // Don't dump stuff here, follow the same order as the header. | 1085 // Don't dump stuff here, follow the same order as the header. |
1091 | 1086 |
1092 } // namespace switches | 1087 } // namespace switches |
OLD | NEW |