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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 // Makes all APIs reflect the layout viewport. | 596 // Makes all APIs reflect the layout viewport. |
597 const char kInertVisualViewport[] = "inert-visual-viewport"; | 597 const char kInertVisualViewport[] = "inert-visual-viewport"; |
598 | 598 |
599 // Run the GPU process as a thread in the browser process. | 599 // Run the GPU process as a thread in the browser process. |
600 const char kInProcessGPU[] = "in-process-gpu"; | 600 const char kInProcessGPU[] = "in-process-gpu"; |
601 | 601 |
602 // Overrides the timeout, in seconds, that a child process waits for a | 602 // Overrides the timeout, in seconds, that a child process waits for a |
603 // connection from the browser before killing itself. | 603 // connection from the browser before killing itself. |
604 const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; | 604 const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; |
605 | 605 |
| 606 // Require dedicated processes for a set of origins, specified as a |
| 607 // comma-separated list. For example: |
| 608 // --isolate-origins=https://www.foo.com,https://www.bar.com |
| 609 const char kIsolateOrigins[] = "isolate-origins"; |
| 610 |
606 // Chrome is running in Mash. | 611 // Chrome is running in Mash. |
607 const char kIsRunningInMash[] = "is-running-in-mash"; | 612 const char kIsRunningInMash[] = "is-running-in-mash"; |
608 | 613 |
609 // Disable latest shipping ECMAScript 6 features. | 614 // Disable latest shipping ECMAScript 6 features. |
610 const char kDisableJavaScriptHarmonyShipping[] = | 615 const char kDisableJavaScriptHarmonyShipping[] = |
611 "disable-javascript-harmony-shipping"; | 616 "disable-javascript-harmony-shipping"; |
612 | 617 |
613 // Enables experimental Harmony (ECMAScript 6) features. | 618 // Enables experimental Harmony (ECMAScript 6) features. |
614 const char kJavaScriptHarmony[] = "javascript-harmony"; | 619 const char kJavaScriptHarmony[] = "javascript-harmony"; |
615 | 620 |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1084 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1089 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1085 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1090 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1086 | 1091 |
1087 // Specifies the testcase used by the IPC fuzzer. | 1092 // Specifies the testcase used by the IPC fuzzer. |
1088 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1093 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1089 #endif | 1094 #endif |
1090 | 1095 |
1091 // Don't dump stuff here, follow the same order as the header. | 1096 // Don't dump stuff here, follow the same order as the header. |
1092 | 1097 |
1093 } // namespace switches | 1098 } // namespace switches |
OLD | NEW |