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/runner/switches.h" | 5 #include "mojo/shell/standalone/switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // Comma separated list like: | 9 // Comma separated list like: |
10 // text/html,mojo:html_viewer,application/bravo,https://abarth.com/bravo | 10 // text/html,mojo:html_viewer,application/bravo,https://abarth.com/bravo |
11 const char kContentHandlers[] = "content-handlers"; | 11 const char kContentHandlers[] = "content-handlers"; |
12 | 12 |
13 // In multiprocess mode, force these apps to be loaded in the main process. | 13 // In multiprocess mode, force these apps to be loaded in the main process. |
14 // This is a comma-separated list of URLs. Example: | 14 // This is a comma-separated list of URLs. Example: |
15 // --force-in-process=mojo:native_viewport_service,mojo:network_service | 15 // --force-in-process=mojo:native_viewport_service,mojo:network_service |
(...skipping 14 matching lines...) Expand all Loading... |
30 | 30 |
31 // When this is set, we create a temporary user data dir for the process, and | 31 // When this is set, we create a temporary user data dir for the process, and |
32 // add a flag so kUserDataDir points to it. | 32 // add a flag so kUserDataDir points to it. |
33 const char kUseTemporaryUserDataDir[] = "use-temporary-user-data-dir"; | 33 const char kUseTemporaryUserDataDir[] = "use-temporary-user-data-dir"; |
34 | 34 |
35 // Specifies the user data directory. This is the one directory which stores | 35 // Specifies the user data directory. This is the one directory which stores |
36 // all persistent data. | 36 // all persistent data. |
37 const char kUserDataDir[] = "user-data-dir"; | 37 const char kUserDataDir[] = "user-data-dir"; |
38 | 38 |
39 } // namespace switches | 39 } // namespace switches |
OLD | NEW |