tree: 2501dd96095eeddaea28f58549e73cfc3d09ecec [path history] [tgz]
  1. audio/
  2. audio_codecs/
  3. call/
  4. crypto/
  5. rtc_event_log/
  6. stats/
  7. task_queue/
  8. test/
  9. transport/
  10. units/
  11. video/
  12. video_codecs/
  13. array_view.h
  14. array_view_unittest.cc
  15. async_resolver_factory.h
  16. audio_options.cc
  17. audio_options.h
  18. bitrate_constraints.h
  19. BUILD.gn
  20. candidate.cc
  21. candidate.h
  22. congestion_control_interface.h
  23. create_peerconnection_factory.cc
  24. create_peerconnection_factory.h
  25. crypto_params.h
  26. data_channel_interface.cc
  27. data_channel_interface.h
  28. data_channel_transport_interface.cc
  29. data_channel_transport_interface.h
  30. datagram_transport_interface.h
  31. DEPS
  32. DESIGN.md
  33. dtls_transport_interface.cc
  34. dtls_transport_interface.h
  35. dtmf_sender_interface.h
  36. fec_controller.h
  37. fec_controller_override.h
  38. function_view.h
  39. function_view_unittest.cc
  40. ice_transport_factory.cc
  41. ice_transport_factory.h
  42. ice_transport_interface.h
  43. jsep.cc
  44. jsep.h
  45. jsep_ice_candidate.cc
  46. jsep_ice_candidate.h
  47. jsep_session_description.h
  48. media_stream_interface.cc
  49. media_stream_interface.h
  50. media_stream_proxy.h
  51. media_stream_track_proxy.h
  52. media_transport_config.cc
  53. media_transport_config.h
  54. media_transport_interface.cc
  55. media_transport_interface.h
  56. media_types.cc
  57. media_types.h
  58. network_state_predictor.h
  59. notifier.h
  60. OWNERS
  61. packet_socket_factory.h
  62. peer_connection_factory_proxy.h
  63. peer_connection_interface.cc
  64. peer_connection_interface.h
  65. peer_connection_proxy.h
  66. proxy.cc
  67. proxy.h
  68. README.md
  69. ref_counted_base.h
  70. rtc_error.cc
  71. rtc_error.h
  72. rtc_error_unittest.cc
  73. rtc_event_log_output.h
  74. rtc_event_log_output_file.cc
  75. rtc_event_log_output_file.h
  76. rtc_event_log_output_file_unittest.cc
  77. rtp_headers.cc
  78. rtp_headers.h
  79. rtp_packet_info.cc
  80. rtp_packet_info.h
  81. rtp_packet_info_unittest.cc
  82. rtp_packet_infos.h
  83. rtp_packet_infos_unittest.cc
  84. rtp_parameters.cc
  85. rtp_parameters.h
  86. rtp_parameters_unittest.cc
  87. rtp_receiver_interface.cc
  88. rtp_receiver_interface.h
  89. rtp_sender_interface.cc
  90. rtp_sender_interface.h
  91. rtp_transceiver_interface.cc
  92. rtp_transceiver_interface.h
  93. scoped_refptr.h
  94. sctp_transport_interface.cc
  95. sctp_transport_interface.h
  96. set_remote_description_observer_interface.h
  97. stats_types.cc
  98. stats_types.h
  99. turn_customizer.h
  100. uma_metrics.h
  101. video_track_source_proxy.h
api/README.md

How to write code in the api/ directory

Mostly, just follow the regular style guide, but:

  • Note that api/ code is not exempt from the “.h and .cc files come in pairs” rule, so if you declare something in api/path/to/foo.h, it should be defined in api/path/to/foo.cc.
  • Headers in api/ should, if possible, not #include headers outside api/. It’s not always possible to avoid this, but be aware that it adds to a small mountain of technical debt that we’re trying to shrink.
  • .cc files in api/, on the other hand, are free to #include headers outside api/.

That is, the preferred way for api/ code to access non-api/ code is to call it from a .cc file, so that users of our API headers won’t transitively #include non-public headers.

For headers in api/ that need to refer to non-public types, forward declarations are often a lesser evil than including non-public header files. The usual rules still apply, though.

.cc files in api/ should preferably be kept reasonably small. If a substantial implementation is needed, consider putting it with our non-public code, and just call it from the api/ .cc file.