forked from pool/nodejs-electron
33 lines
1.4 KiB
Diff
33 lines
1.4 KiB
Diff
|
From 4b48bc4dd6ce9c56d254e552a33a7b7c2d6fc226 Mon Sep 17 00:00:00 2001
|
||
|
From: Jose Dapena Paz <jdapena@igalia.com>
|
||
|
Date: Thu, 1 Feb 2024 17:01:51 +0000
|
||
|
Subject: [PATCH] IWYU: usage of std::optional in
|
||
|
search_engine_choice_service.h requires include
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Bug: 957519
|
||
|
Change-Id: If89767ae4cd261081efda97cde6a296209b68782
|
||
|
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5259337
|
||
|
Reviewed-by: Colin Blundell <blundell@chromium.org>
|
||
|
Commit-Queue: José Dapena Paz <jdapena@igalia.com>
|
||
|
Cr-Commit-Position: refs/heads/main@{#1255105}
|
||
|
---
|
||
|
.../search_engine_choice/search_engine_choice_service.h | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/components/search_engines/search_engine_choice/search_engine_choice_service.h b/components/search_engines/search_engine_choice/search_engine_choice_service.h
|
||
|
index b84ea7ec5fc08..c9dcce4b7c833 100644
|
||
|
--- a/components/search_engines/search_engine_choice/search_engine_choice_service.h
|
||
|
+++ b/components/search_engines/search_engine_choice/search_engine_choice_service.h
|
||
|
@@ -5,6 +5,8 @@
|
||
|
#ifndef COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINE_CHOICE_SEARCH_ENGINE_CHOICE_SERVICE_H_
|
||
|
#define COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINE_CHOICE_SEARCH_ENGINE_CHOICE_SERVICE_H_
|
||
|
|
||
|
+#include <optional>
|
||
|
+
|
||
|
#include "base/memory/raw_ref.h"
|
||
|
#include "base/memory/weak_ptr.h"
|
||
|
#include "components/country_codes/country_codes.h"
|