diff --git a/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php b/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php
index 103b303..d6dbee3 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.
@@ -195,7 +195,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;
     }
@@ -318,7 +318,7 @@ public static function getSubscribedEvents() {
     // should not be polluted by maintenance mode-specific behavior; priority
     // 30), but before ContentControllerSubscriber (updates _controller, but
     // that is a no-op when Dynamic Page Cache runs; priority 25).
-    $events[KernelEvents::REQUEST][] = ['onRouteMatch', 27];
+    $events[KernelEvents::REQUEST][] = ['onRequest', 27];
 
     // Run before HtmlResponseSubscriber::onRespond(), which has priority 0.
     $events[KernelEvents::RESPONSE][] = ['onResponse', 100];
