diff --git a/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php b/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php
index 13f88a4..2b4dcc4 100644
--- a/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php
+++ b/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php
@@ -82,7 +82,7 @@ function render($values) {
       }
       if (!empty($title) && !empty($path)) {
         // Make sure that tokens are replaced for this paths as well.
-        $tokens = $this->get_render_tokens(array());
+        $tokens = $this->getRenderTokens(array());
         $path = strip_tags(decode_entities(strtr($path, $tokens)));
 
         $links[$field] = array(
diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
index d527836..6cc018e 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
@@ -991,7 +991,7 @@ public function optionLink($text, $section, $class = '', $title = '') {
   /**
    * Returns to tokens for arguments.
    *
-   * This function is similar to views_handler_field::get_render_tokens()
+   * This function is similar to views_handler_field::getRenderTokens()
    * but without fields tokens.
    */
   public function getArgumentsTokens() {
diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php
index bc8dfff..df06c23 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php
@@ -321,7 +321,7 @@ function tokenize_value($value, $row_index = NULL) {
           $tokens = $last_field->last_tokens;
         }
         else {
-          $tokens = $last_field->get_render_tokens($fake_item);
+          $tokens = $last_field->getRenderTokens($fake_item);
         }
       }
 
@@ -1207,7 +1207,7 @@ function render_text($alter) {
     $value = $this->last_render;
 
     if (!empty($alter['alter_text']) && $alter['text'] !== '') {
-      $tokens = $this->get_render_tokens($alter);
+      $tokens = $this->getRenderTokens($alter);
       $value = $this->render_altered($alter, $tokens);
     }
 
@@ -1242,7 +1242,7 @@ function render_text($alter) {
       $length = strlen($value);
       $value = $this->render_trim_text($alter, $value);
       if ($this->options['alter']['more_link'] && strlen($value) < $length) {
-        $tokens = $this->get_render_tokens($alter);
+        $tokens = $this->getRenderTokens($alter);
         $more_link_text = $this->options['alter']['more_link_text'] ? $this->options['alter']['more_link_text'] : t('more');
         $more_link_text = strtr(filter_xss_admin($more_link_text), $tokens);
         $more_link_path = $this->options['alter']['more_link_path'];
@@ -1268,7 +1268,7 @@ function render_text($alter) {
 
     if (!empty($alter['make_link']) && !empty($alter['path'])) {
       if (!isset($tokens)) {
-        $tokens = $this->get_render_tokens($alter);
+        $tokens = $this->getRenderTokens($alter);
       }
       $value = $this->render_as_link($alter, $value, $tokens);
     }
@@ -1457,7 +1457,7 @@ function render_as_link($alter, $text, $tokens) {
    * are available and gets their values. This will then be
    * used in one giant str_replace().
    */
-  function get_render_tokens($item) {
+  public function getRenderTokens($item) {
     $tokens = array();
     if (!empty($this->view->build_info['substitutions'])) {
       $tokens = $this->view->build_info['substitutions'];
diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Links.php b/core/modules/views/lib/Drupal/views/Plugin/views/field/Links.php
index a33ac65..4543e98 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/field/Links.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/field/Links.php
@@ -66,7 +66,7 @@ protected function getLinks() {
         $path = $this->view->field[$field]->options['alter']['path'];
       }
       // Make sure that tokens are replaced for this paths as well.
-      $tokens = $this->get_render_tokens(array());
+      $tokens = $this->getRenderTokens(array());
       $path = strip_tags(decode_entities(strtr($path, $tokens)));
 
       $links[$field] = array(
diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php
index 2fe7cfa..0a04835 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php
@@ -626,7 +626,7 @@ protected function render_fields(array $result) {
             $this->rendered_fields[$count][$id] = $this->view->field[$id]->theme($row);
           }
 
-          $this->row_tokens[$count] = $this->view->field[$id]->get_render_tokens(array());
+          $this->row_tokens[$count] = $this->view->field[$id]->getRenderTokens(array());
         }
       }
       unset($this->view->row_index);
