remote_open_url_constants.cc 664 B

12345678910111213141516171819202122232425
  1. // Copyright 2021 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. #include "remoting/host/remote_open_url/remote_open_url_constants.h"
  5. #include "build/build_config.h"
  6. namespace remoting {
  7. const char kRemoteOpenUrlDataChannelName[] = "remote-open-url";
  8. #if BUILDFLAG(IS_WIN)
  9. #if defined(OFFICIAL_BUILD)
  10. const wchar_t kUrlForwarderProgId[] = L"ChromeRemoteDesktopUrlForwarder";
  11. #else
  12. const wchar_t kUrlForwarderProgId[] = L"ChromotingUrlForwarder";
  13. #endif
  14. const wchar_t kUndecidedProgId[] = L"Undecided";
  15. #endif // defined (OS_WIN)
  16. } // namespace remoting