| 810 | } |
| 811 | |
| 812 | void RoutingSession::EmitCloseRoutingEvent() const |
| 813 | { |
| 814 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 815 | ASSERT(m_route, ()); |
| 816 | |
| 817 | if (!m_route->IsValid()) |
| 818 | { |
| 819 | ASSERT(false, ()); |
| 820 | return; |
| 821 | } |
| 822 | } |
| 823 | |
| 824 | bool RoutingSession::HasRouteAltitude() const |
| 825 | { |
no test coverage detected