| 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 #ifndef MOJO_SHELL_STANDALONE_SWITCHES_H_ | 5 #ifndef MOJO_SHELL_STANDALONE_SWITCHES_H_ |
| 6 #define MOJO_SHELL_STANDALONE_SWITCHES_H_ | 6 #define MOJO_SHELL_STANDALONE_SWITCHES_H_ |
| 7 | 7 |
| 8 namespace mojo { | 8 namespace mojo { |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| 11 // All switches in alphabetical order. The switches should be documented | 11 // All switches in alphabetical order. The switches should be documented |
| 12 // alongside the definition of their values in the .cc file. | 12 // alongside the definition of their values in the .cc file. |
| 13 extern const char kApp[]; | 13 extern const char kApp[]; |
| 14 extern const char kContentHandlers[]; | |
| 15 extern const char kForceInProcess[]; | 14 extern const char kForceInProcess[]; |
| 16 extern const char kHelp[]; | 15 extern const char kHelp[]; |
| 17 extern const char kMapOrigin[]; | 16 extern const char kMapOrigin[]; |
| 18 extern const char kURLMappings[]; | 17 extern const char kURLMappings[]; |
| 19 extern const char kUseTemporaryUserDataDir[]; | 18 extern const char kUseTemporaryUserDataDir[]; |
| 20 extern const char kUserDataDir[]; | 19 extern const char kUserDataDir[]; |
| 21 | 20 |
| 22 } // namespace switches | 21 } // namespace switches |
| 23 } // namespace mojo | 22 } // namespace mojo |
| 24 | 23 |
| 25 #endif // MOJO_SHELL_STANDALONE_SWITCHES_H_ | 24 #endif // MOJO_SHELL_STANDALONE_SWITCHES_H_ |
| OLD | NEW |