| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "mojo/shell/switches.h" | 5 #include "mojo/shell/switches.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | |
| 8 | 7 |
| 9 namespace switches { | 8 namespace switches { |
| 10 | 9 |
| 11 // If set apps downloaded are not deleted. | 10 // If set apps downloaded are not deleted. |
| 12 const char kDontDeleteOnDownload[] = "dont-delete-on-download"; | 11 const char kDontDeleteOnDownload[] = "dont-delete-on-download"; |
| 13 | 12 |
| 14 // Load apps in separate processes. | 13 // Load apps in separate processes. |
| 15 // TODO(vtl): Work in progress; doesn't work. Flip this to "disable" (or maybe | 14 // TODO(vtl): Work in progress; doesn't work. Flip this to "disable" (or maybe |
| 16 // change it to "single-process") when it works. | 15 // change it to "single-process") when it works. |
| 17 const char kEnableMultiprocess[] = "enable-multiprocess"; | 16 const char kEnableMultiprocess[] = "enable-multiprocess"; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 28 // find locally any loaded library. For this, gdb use the filename of the | 27 // find locally any loaded library. For this, gdb use the filename of the |
| 29 // library. When using this flag, the application are named with the sha256 of | 28 // library. When using this flag, the application are named with the sha256 of |
| 30 // their content. | 29 // their content. |
| 31 const char kPredictableAppFilenames[] = "predictable-app-filenames"; | 30 const char kPredictableAppFilenames[] = "predictable-app-filenames"; |
| 32 | 31 |
| 33 // Pull apps via component updater, rather than using default local resolution | 32 // Pull apps via component updater, rather than using default local resolution |
| 34 // to find them. | 33 // to find them. |
| 35 const char kUseUpdater[] = "use-updater"; | 34 const char kUseUpdater[] = "use-updater"; |
| 36 | 35 |
| 37 } // namespace switches | 36 } // namespace switches |
| OLD | NEW |