Allows access plugins to alter the route definition of a view.
Likely the access plugin will add new requirements, so its custom access checker can be applied.
\Symfony\Component\Routing\Route $route: The route to change.
Overrides AccessPluginBase::alterRouteDefinition
public function alterRouteDefinition(Route $route) {
$route
->setRequirement('_access', 'TRUE');
}