| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // for each site instance (i.e., group of pages from the same registered | 89 // for each site instance (i.e., group of pages from the same registered |
| 90 // domain with script connections to each other). | 90 // domain with script connections to each other). |
| 91 const wchar_t kProcessPerSite[] = L"process-per-site"; | 91 const wchar_t kProcessPerSite[] = L"process-per-site"; |
| 92 | 92 |
| 93 // Runs plugins inside the renderer process | 93 // Runs plugins inside the renderer process |
| 94 const wchar_t kInProcessPlugins[] = L"in-process-plugins"; | 94 const wchar_t kInProcessPlugins[] = L"in-process-plugins"; |
| 95 | 95 |
| 96 // Runs the renderer outside the sandbox. | 96 // Runs the renderer outside the sandbox. |
| 97 const wchar_t kNoSandbox[] = L"no-sandbox"; | 97 const wchar_t kNoSandbox[] = L"no-sandbox"; |
| 98 | 98 |
| 99 // Disables the alternate window station for the renderer. |
| 100 const wchar_t kDisableAltWinstation[] = L"disable-winsta"; |
| 101 |
| 99 // Runs the plugin processes inside the sandbox. | 102 // Runs the plugin processes inside the sandbox. |
| 100 const wchar_t kSafePlugins[] = L"safe-plugins"; | 103 const wchar_t kSafePlugins[] = L"safe-plugins"; |
| 101 | 104 |
| 102 // Excludes these plugins from the plugin sandbox. | 105 // Excludes these plugins from the plugin sandbox. |
| 103 // This is a comma-separated list of plugin library names and activex clsid. | 106 // This is a comma-separated list of plugin library names and activex clsid. |
| 104 const wchar_t kTrustedPlugins[] = L"trusted-plugins"; | 107 const wchar_t kTrustedPlugins[] = L"trusted-plugins"; |
| 105 | 108 |
| 106 // Runs the security test for the sandbox. | 109 // Runs the security test for the sandbox. |
| 107 const wchar_t kTestSandbox[] = L"test-sandbox"; | 110 const wchar_t kTestSandbox[] = L"test-sandbox"; |
| 108 | 111 |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 const wchar_t kDisableAudio[] = L"disable-audio"; | 451 const wchar_t kDisableAudio[] = L"disable-audio"; |
| 449 | 452 |
| 450 // Replaces the buffered data source for <audio> and <video> with a simplified | 453 // Replaces the buffered data source for <audio> and <video> with a simplified |
| 451 // resource loader that downloads the entire resource into memory. | 454 // resource loader that downloads the entire resource into memory. |
| 452 // | 455 // |
| 453 // TODO(scherkus): remove --simple-data-source when our media resource loading | 456 // TODO(scherkus): remove --simple-data-source when our media resource loading |
| 454 // is cleaned up and playback testing completed. | 457 // is cleaned up and playback testing completed. |
| 455 const wchar_t kSimpleDataSource[] = L"simple-data-source"; | 458 const wchar_t kSimpleDataSource[] = L"simple-data-source"; |
| 456 | 459 |
| 457 } // namespace switches | 460 } // namespace switches |
| OLD | NEW |