cast_core_switches.h 704 B

123456789101112131415161718192021
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef CHROMECAST_CAST_CORE_CAST_CORE_SWITCHES_H_
  5. #define CHROMECAST_CAST_CORE_CAST_CORE_SWITCHES_H_
  6. namespace cast {
  7. namespace core {
  8. // Specifies the Cast Core runtime ID, --cast-core-runtime-id=<runtime_id>.
  9. constexpr char kCastCoreRuntimeIdSwitch[] = "cast-core-runtime-id";
  10. // Specifies the Cast Core runtime gRPC endpoint,
  11. // --runtime-service-path=<endpoint>.
  12. constexpr char kRuntimeServicePathSwitch[] = "runtime-service-path";
  13. } // namespace core
  14. } // namespace cast
  15. #endif // CHROMECAST_CAST_CORE_CAST_CORE_SWITCHES_H_