| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 // This is a comma separated list of plugin dlls name and activex clsid. | 105 // This is a comma separated list of plugin dlls name and activex clsid. |
| 106 const wchar_t kTrustedPlugins[] = L"trusted-plugins"; | 106 const wchar_t kTrustedPlugins[] = L"trusted-plugins"; |
| 107 | 107 |
| 108 // Runs the security test for the sandbox. | 108 // Runs the security test for the sandbox. |
| 109 const wchar_t kTestSandbox[] = L"test-sandbox"; | 109 const wchar_t kTestSandbox[] = L"test-sandbox"; |
| 110 | 110 |
| 111 // Specifies the user data directory, which is where the browser will look | 111 // Specifies the user data directory, which is where the browser will look |
| 112 // for all of its state. | 112 // for all of its state. |
| 113 const wchar_t kUserDataDir[] = L"user-data-dir"; | 113 const wchar_t kUserDataDir[] = L"user-data-dir"; |
| 114 | 114 |
| 115 // Specifies the path to the user data folder for the parent profile. |
| 116 const wchar_t kParentProfile[] = L"parent-profile"; |
| 117 |
| 115 // Specifies that the associated value should be launched in "application" mode. | 118 // Specifies that the associated value should be launched in "application" mode. |
| 116 const wchar_t kApp[] = L"app"; | 119 const wchar_t kApp[] = L"app"; |
| 117 | 120 |
| 118 // Specifies the file that should be uploaded to the provided application. This | 121 // Specifies the file that should be uploaded to the provided application. This |
| 119 // switch is expected to be used with --app option. | 122 // switch is expected to be used with --app option. |
| 120 const wchar_t kAppUploadFile[] = L"upload-file"; | 123 const wchar_t kAppUploadFile[] = L"upload-file"; |
| 121 | 124 |
| 122 // Specifies if the dom_automation_controller_ needs to be bound in the | 125 // Specifies if the dom_automation_controller_ needs to be bound in the |
| 123 // renderer. This binding happens on per-frame basis and hence can potentially | 126 // renderer. This binding happens on per-frame basis and hence can potentially |
| 124 // be a performance bottleneck. One should only enable it when automating | 127 // be a performance bottleneck. One should only enable it when automating |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 const wchar_t kUseOldSafeBrowsing[] = L"old-safe-browsing"; | 344 const wchar_t kUseOldSafeBrowsing[] = L"old-safe-browsing"; |
| 342 | 345 |
| 343 // Turns on the accessibility in the renderer. Off by default until | 346 // Turns on the accessibility in the renderer. Off by default until |
| 344 // http://b/issue?id=1432077 is fixed. | 347 // http://b/issue?id=1432077 is fixed. |
| 345 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; | 348 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; |
| 346 | 349 |
| 347 // Enable HTML5 Video/Audio tag support | 350 // Enable HTML5 Video/Audio tag support |
| 348 const wchar_t kEnableVideo[] = L"enable-video"; | 351 const wchar_t kEnableVideo[] = L"enable-video"; |
| 349 | 352 |
| 350 } // namespace switches | 353 } // namespace switches |
| OLD | NEW |