static */
| 131 | } |
| 132 | |
| 133 | /* static */ StatusOr<std::unique_ptr<Service>> Service::NewService( |
| 134 | se::Platform* platform) { |
| 135 | ServiceOptions default_options; |
| 136 | default_options.set_platform(platform); |
| 137 | return NewService(default_options); |
| 138 | } |
| 139 | |
| 140 | /* static */ StatusOr<std::unique_ptr<Service>> Service::NewService( |
| 141 | const ServiceOptions& options) { |
nothing calls this directly
no test coverage detected