diff --git a/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php b/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php
index c0c3399..908092b 100644
--- a/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php
+++ b/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php
@@ -43,7 +43,7 @@ class DynamicPageCacheSubscriber implements EventSubscriberInterface {
   /**
    * Attribute name of the Dynamic Page Cache request policy result.
    *
-   * @see onRouteMatch()
+   * @see onRequest()
    * @see onRespond()
    */
   const ATTRIBUTE_REQUEST_POLICY_RESULT = '_dynamic_page_cache_request_policy_result';
@@ -128,7 +128,7 @@ public function __construct(RequestPolicyInterface $request_policy, ResponsePoli
    * @param \Symfony\Component\HttpKernel\Event\GetResponseEvent $event
    *   The event to process.
    */
-  public function onRouteMatch(GetResponseEvent $event) {
+  public function onRequest(GetResponseEvent $event) {
     // Don't cache the response if the Dynamic Page Cache request policies are
     // not met. Store the result in a request attribute, so that onResponse()
     // does not have to redo the request policy check.
@@ -194,7 +194,7 @@ public function onResponse(FilterResponseEvent $event) {
 
     // Don't cache the response if the Dynamic Page Cache request & response
     // policies are not met.
-    // @see onRouteMatch()
+    // @see onRequest()
     if ($request->attributes->get(self::ATTRIBUTE_REQUEST_POLICY_RESULT) === RequestPolicyInterface::DENY || $this->responsePolicy->check($response, $request) === ResponsePolicyInterface::DENY) {
       return;
     }
@@ -317,7 +317,7 @@ public static function getSubscribedEvents() {
     // polluted by maintenance mode-specific behavior), but before
     // ContentControllerSubscriber (updates _controller, but that is a no-op
     // when Dynamic Page Cache runs).
-    $events[KernelEvents::REQUEST][] = ['onRouteMatch', 27];
+    $events[KernelEvents::REQUEST][] = ['onRequest', 27];
 
     // Run before HtmlResponseSubscriber::onRespond(), which has priority 0.
     $events[KernelEvents::RESPONSE][] = ['onResponse', 100];
