diff --git a/django/utils/cache.py b/django/utils/cache.py
index 8b81a2f..2383521 100644
--- a/django/utils/cache.py
+++ b/django/utils/cache.py
@@ -126,6 +126,8 @@ def add_never_cache_headers(response):
     """
     Adds headers to a response to indicate that a page should never be cached.
     """
+    patch_cache_control(response, no_cache=True)
+    patch_cache_control(response, no_store=True)
     patch_response_headers(response, cache_timeout=-1)
 
 def patch_vary_headers(response, newheaders):
