diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php
index 117ade9..5d0c52c 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php
@@ -450,7 +450,7 @@ function default_actions($which = NULL) {
       'default' => array(
         'title' => t('Provide default value'),
         'method' => 'default_default',
-        'form method' => 'default_argument_form',
+        'form method' => 'defaultArgumentForm',
         'has default argument' => TRUE,
         'default only' => TRUE, // this can only be used for missing argument, not validation failure
         'breadcrumb' => TRUE, // generate a breadcrumb to here
@@ -497,7 +497,7 @@ function default_actions($which = NULL) {
    * Provide a form for selecting the default argument when the
    * default action is set to provide default argument.
    */
-  function default_argument_form(&$form, &$form_state) {
+  function defaultArgumentForm(&$form, &$form_state) {
     $plugins = Views::pluginManager('argument_default')->getDefinitions();
     $options = array();
 
diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Date.php b/core/modules/views/lib/Drupal/views/Plugin/views/argument/Date.php
index 6294ee3..5817da5 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Date.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/argument/Date.php
@@ -47,8 +47,8 @@ class Date extends Formula {
   /**
    * Add an option to set the default value to the current date.
    */
-  function default_argument_form(&$form, &$form_state) {
-    parent::default_argument_form($form, $form_state);
+  function defaultArgumentForm(&$form, &$form_state) {
+    parent::defaultArgumentForm($form, $form_state);
     $form['default_argument_type']['#options'] += array('date' => t('Current date'));
     $form['default_argument_type']['#options'] += array('node_created' => t("Current node's creation time"));
     $form['default_argument_type']['#options'] += array('node_changed' => t("Current node's update time"));  }
