fix_don_t_use_forward_declaration_header.patch 1005 B

12345678910111213141516171819202122
  1. From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
  2. From: David Sanders <[email protected]>
  3. Date: Wed, 30 Oct 2024 19:14:19 -0700
  4. Subject: fix: don't use forward declaration header
  5. Fails to build from source unless the full header is included. Being upstreamed at https://chromium-review.googlesource.com/c/chromium/src/+/5981701.
  6. Refs: https://chromium-review.googlesource.com/c/chromium/src/+/5868889
  7. diff --git a/content/browser/shared_storage/shared_storage_saved_query_data.h b/content/browser/shared_storage/shared_storage_saved_query_data.h
  8. index 206c720fcb797eb36e13183044e13d4e2159b48f..3f37b06492305e279eb46886ddfa6f9a170eaf6e 100644
  9. --- a/content/browser/shared_storage/shared_storage_saved_query_data.h
  10. +++ b/content/browser/shared_storage/shared_storage_saved_query_data.h
  11. @@ -9,7 +9,7 @@
  12. #include <queue>
  13. -#include "base/functional/callback_forward.h"
  14. +#include "base/functional/callback.h"
  15. #include "content/common/content_export.h"
  16. namespace content {