Home
last modified time | relevance | path

Searched refs:CefMediaRoute (Results 1 – 13 of 13) sorted by relevance

/third_party/cef/include/
Dcef_media_router.h47 class CefMediaRoute; variable
138 const std::vector<CefRefPtr<CefMediaRoute>>& routes) = 0;
144 virtual void OnRouteStateChanged(CefRefPtr<CefMediaRoute> route,
152 virtual void OnRouteMessageReceived(CefRefPtr<CefMediaRoute> route,
165 class CefMediaRoute : public virtual CefBaseRefCounted {
217 CefRefPtr<CefMediaRoute> route) = 0;
/third_party/cef/libcef_dll/ctocpp/
Dmedia_observer_ctocpp.h40 void OnRoutes(const std::vector<CefRefPtr<CefMediaRoute>>& routes) override;
41 void OnRouteStateChanged(CefRefPtr<CefMediaRoute> route,
43 void OnRouteMessageReceived(CefRefPtr<CefMediaRoute> route,
Dmedia_route_ctocpp.cc119 CefCToCppRefCounted<CefMediaRouteCToCpp, CefMediaRoute, cef_media_route_t>::
120 UnwrapDerived(CefWrapperType type, CefMediaRoute* c) { in UnwrapDerived()
127 CefMediaRoute,
Dmedia_observer_ctocpp.cc56 const std::vector<CefRefPtr<CefMediaRoute>>& routes) { in OnRoutes()
87 void CefMediaObserverCToCpp::OnRouteStateChanged(CefRefPtr<CefMediaRoute> route, in OnRouteStateChanged()
109 CefRefPtr<CefMediaRoute> route, in OnRouteMessageReceived()
Dmedia_route_create_callback_ctocpp.h40 CefRefPtr<CefMediaRoute> route) override;
Dmedia_route_ctocpp.h30 CefMediaRoute,
Dmedia_route_create_callback_ctocpp.cc25 CefRefPtr<CefMediaRoute> route) { in OnMediaRouteCreateFinished()
/third_party/cef/libcef_dll/cpptoc/
Dmedia_route_cpptoc.cc128 CefRefPtr<CefMediaRoute>
129 CefCppToCRefCounted<CefMediaRouteCppToC, CefMediaRoute, cef_media_route_t>::
137 CefMediaRoute,
Dmedia_observer_cpptoc.cc70 std::vector<CefRefPtr<CefMediaRoute>> routesList; in media_observer_on_routes()
73 CefRefPtr<CefMediaRoute> routesVal = CefMediaRouteCToCpp::Wrap(routes[i]); in media_observer_on_routes()
Dmedia_route_cpptoc.h30 CefMediaRoute,
/third_party/cef/tests/cefclient/browser/
Dmedia_router_test.cc68 CefRefPtr<CefMediaRoute> route) override { in OnMediaRouteCreateFinished()
90 typedef std::vector<CefRefPtr<CefMediaRoute>> MediaRouteVector;
125 CefRefPtr<CefMediaRoute> route = GetRoute(route_id); in TerminateRoute()
138 CefRefPtr<CefMediaRoute> route = GetRoute(route_id); in SendRouteMessage()
216 CefRefPtr<CefMediaRoute> route = *it; in OnRoutes()
231 void OnRouteStateChanged(CefRefPtr<CefMediaRoute> route, in OnRouteStateChanged()
241 void OnRouteMessageReceived(CefRefPtr<CefMediaRoute> route, in OnRouteMessageReceived()
296 CefRefPtr<CefMediaRoute> GetRoute(const std::string& route_id) { in GetRoute()
360 typedef std::map<std::string, CefRefPtr<CefMediaRoute>> RouteMap;
/third_party/cef/libcef/browser/media_router/
Dmedia_router_impl.cc79 std::vector<CefRefPtr<CefMediaRoute>> cef_routes; in OnMediaRoutes()
89 CefRefPtr<CefMediaRoute> cef_route = MakeCefRoute(route); in OnMediaRouteMessages()
114 CefRefPtr<CefMediaRoute> MakeCefRoute(const media_router::MediaRoute& route) { in MakeCefRoute()
296 CefRefPtr<CefMediaRoute> route; in CreateRouteCallback()
Dmedia_route_impl.h15 class CefMediaRouteImpl : public CefMediaRoute {