| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 const wchar_t kUserDataDir[] = L"user-data-dir"; | 113 const wchar_t kUserDataDir[] = L"user-data-dir"; |
| 114 | 114 |
| 115 // Specifies the plugin data directory, which is where plugins (Gears | 115 // Specifies the plugin data directory, which is where plugins (Gears |
| 116 // specifically) will store its state. | 116 // specifically) will store its state. |
| 117 const wchar_t kPluginDataDir[] = L"plugin-data-dir"; | 117 const wchar_t kPluginDataDir[] = L"plugin-data-dir"; |
| 118 | 118 |
| 119 // Use a specific disk cache location, rather than one derived from the | 119 // Use a specific disk cache location, rather than one derived from the |
| 120 // UserDatadir. | 120 // UserDatadir. |
| 121 const wchar_t kDiskCacheDir[] = L"disk-cache-dir"; | 121 const wchar_t kDiskCacheDir[] = L"disk-cache-dir"; |
| 122 | 122 |
| 123 // Whether the multiple profiles feature based on the user-data-dir flag is |
| 124 // enabled or not. |
| 125 const wchar_t kEnableUserDataDirProfiles[] = L"enable-udd-profiles"; |
| 126 |
| 123 // Specifies the path to the user data folder for the parent profile. | 127 // Specifies the path to the user data folder for the parent profile. |
| 124 const wchar_t kParentProfile[] = L"parent-profile"; | 128 const wchar_t kParentProfile[] = L"parent-profile"; |
| 125 | 129 |
| 126 // Specifies that the associated value should be launched in "application" mode. | 130 // Specifies that the associated value should be launched in "application" mode. |
| 127 const wchar_t kApp[] = L"app"; | 131 const wchar_t kApp[] = L"app"; |
| 128 | 132 |
| 129 // Specifies the file that should be uploaded to the provided application. This | 133 // Specifies the file that should be uploaded to the provided application. This |
| 130 // switch is expected to be used with --app option. | 134 // switch is expected to be used with --app option. |
| 131 const wchar_t kAppUploadFile[] = L"upload-file"; | 135 const wchar_t kAppUploadFile[] = L"upload-file"; |
| 132 | 136 |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 const wchar_t kEnableVideo[] = L"enable-video"; | 377 const wchar_t kEnableVideo[] = L"enable-video"; |
| 374 | 378 |
| 375 // Pass the name of the current running automated test to Chrome. | 379 // Pass the name of the current running automated test to Chrome. |
| 376 const wchar_t kTestName[] = L"test-name"; | 380 const wchar_t kTestName[] = L"test-name"; |
| 377 | 381 |
| 378 // On POSIX only: the contents of this flag are prepended to the renderer | 382 // On POSIX only: the contents of this flag are prepended to the renderer |
| 379 // command line. (Useful values might be "valgrind" or "gdb --args") | 383 // command line. (Useful values might be "valgrind" or "gdb --args") |
| 380 const wchar_t kRendererCmdPrefix[] = L"renderer-cmd-prefix"; | 384 const wchar_t kRendererCmdPrefix[] = L"renderer-cmd-prefix"; |
| 381 | 385 |
| 382 } // namespace switches | 386 } // namespace switches |
| OLD | NEW |