My need was similar in that when a person started to fill out the form, the data from the previous user was still there and I needed to clear the previously entered content. If this is what you want to do, the following should work:
Open up contact-form7/includes/classes.php and at line 152 change:
$form .= '<form action="' . esc_url_raw( $url ) . '" method="post"'
. ' class="' . esc_attr( $class ) . '"' . $enctype . ' >' . "\n";
to
$form .= '<form action="' . esc_url_raw( $url ) . '" method="post"'
. ' class="' . esc_attr( $class ) . '"' . $enctype . ' autocomplete="off">' . "\n";