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

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

Issue 2831683002: Introduce support for origins that require process isolation. (Closed)
Patch Set: Charlie's comments (round 3) Created 3 years, 6 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/test/BUILD.gn » ('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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698