| 1421 | } |
| 1422 | |
| 1423 | void RoutingManager::SetRouter(RouterType type) |
| 1424 | { |
| 1425 | CHECK_THREAD_CHECKER(m_threadChecker, ("SetRouter")); |
| 1426 | |
| 1427 | if (m_currentRouterType == type) |
| 1428 | return; |
| 1429 | |
| 1430 | // Hide preview. |
| 1431 | HidePreviewSegments(); |
| 1432 | |
| 1433 | SetLastUsedRouter(type); |
| 1434 | SetRouterImpl(type); |
| 1435 | } |
| 1436 | |
| 1437 | // static |
| 1438 | uint32_t RoutingManager::InvalidRoutePointsTransactionId() |
no outgoing calls
no test coverage detected