| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 SERVICES_SERVICE_MANAGER_EMBEDDER_SWITCHES_H_ | 5 #ifndef SERVICES_SERVICE_MANAGER_EMBEDDER_SWITCHES_H_ |
| 6 #define SERVICES_SERVICE_MANAGER_EMBEDDER_SWITCHES_H_ | 6 #define SERVICES_SERVICE_MANAGER_EMBEDDER_SWITCHES_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "services/service_manager/embedder/service_manager_embedder_export.h" | 9 #include "services/service_manager/embedder/service_manager_embedder_export.h" |
| 10 | 10 |
| 11 namespace service_manager { | 11 namespace service_manager { |
| 12 namespace switches { | 12 namespace switches { |
| 13 | 13 |
| 14 #if defined(OS_WIN) | 14 #if defined(OS_WIN) |
| 15 SERVICE_MANAGER_EMBEDDER_EXPORT | 15 SERVICE_MANAGER_EMBEDDER_EXPORT |
| 16 extern const char kDefaultServicePrefetchArgument[]; | 16 extern const char kDefaultServicePrefetchArgument[]; |
| 17 #endif // defined(OS_WIN) | 17 #endif // defined(OS_WIN) |
| 18 | 18 |
| 19 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char |
| 20 kDisableInProcessStackTraces[]; |
| 19 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kEnableLogging[]; | 21 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kEnableLogging[]; |
| 20 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kProcessType[]; | 22 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kProcessType[]; |
| 21 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kProcessTypeServiceManager[]; | 23 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kProcessTypeServiceManager[]; |
| 22 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kProcessTypeService[]; | 24 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kProcessTypeService[]; |
| 23 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kSharedFiles[]; | 25 SERVICE_MANAGER_EMBEDDER_EXPORT extern const char kSharedFiles[]; |
| 24 | 26 |
| 25 } // namespace switches | 27 } // namespace switches |
| 26 } // namespace service_manager | 28 } // namespace service_manager |
| 27 | 29 |
| 28 #endif // SERVICES_SERVICE_MANAGER_EMBEDDER_SWITCHES_H_ | 30 #endif // SERVICES_SERVICE_MANAGER_EMBEDDER_SWITCHES_H_ |
| OLD | NEW |