| 661 | } |
| 662 | |
| 663 | traffic::SpeedGroup RoutingSession::MatchTraffic(location::RouteMatchingInfo const & routeMatchingInfo) const |
| 664 | { |
| 665 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 666 | if (!routeMatchingInfo.IsMatched()) |
| 667 | return SpeedGroup::Unknown; |
| 668 | |
| 669 | size_t const index = routeMatchingInfo.GetIndexInRoute(); |
| 670 | |
| 671 | return m_route->GetTraffic(index); |
| 672 | } |
| 673 | |
| 674 | bool RoutingSession::DisableFollowMode() |
| 675 | { |
nothing calls this directly
no test coverage detected