| 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 library names and activex clsid. | 105 // This is a comma-separated list of plugin library names 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 // Use a specific disk cache location, rather than one derived |
| 116 // from the UserDatadir. |
| 117 const wchar_t kDiskCacheDir[] = L"disk-cache-dir"; |
| 118 |
| 115 // Specifies the plugin data directory, which is where plugins (Gears | 119 // Specifies the plugin data directory, which is where plugins (Gears |
| 116 // specifically) will store its state. | 120 // specifically) will store its state. |
| 117 const wchar_t kPluginDataDir[] = L"plugin-data-dir"; | 121 const wchar_t kPluginDataDir[] = L"plugin-data-dir"; |
| 118 | 122 |
| 119 // Specifies the path to the user data folder for the parent profile. | 123 // Specifies the path to the user data folder for the parent profile. |
| 120 const wchar_t kParentProfile[] = L"parent-profile"; | 124 const wchar_t kParentProfile[] = L"parent-profile"; |
| 121 | 125 |
| 122 // Specifies that the associated value should be launched in "application" mode. | 126 // Specifies that the associated value should be launched in "application" mode. |
| 123 const wchar_t kApp[] = L"app"; | 127 const wchar_t kApp[] = L"app"; |
| 124 | 128 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 // http://b/issue?id=1432077 is fixed. | 365 // http://b/issue?id=1432077 is fixed. |
| 362 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; | 366 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; |
| 363 | 367 |
| 364 // Enable HTML5 Video/Audio tag support | 368 // Enable HTML5 Video/Audio tag support |
| 365 const wchar_t kEnableVideo[] = L"enable-video"; | 369 const wchar_t kEnableVideo[] = L"enable-video"; |
| 366 | 370 |
| 367 // Pass the name of the current running automated test to Chrome. | 371 // Pass the name of the current running automated test to Chrome. |
| 368 const wchar_t kTestName[] = L"test-name"; | 372 const wchar_t kTestName[] = L"test-name"; |
| 369 | 373 |
| 370 } // namespace switches | 374 } // namespace switches |
| OLD | NEW |