Explicitly added header for BinderRegistryWithArgs

Otherwise ther is an error:

../../brave/browser/brave_content_browser_client.cc:530:11: error: implicit instantiation of undefined template 'service_manager::BinderRegistryWithArgs<>'
  registry->AddInterface(base::BindRepeating(&BindBraveSearchFallbackHost,
          ^
../../../src/content/public/browser/content_browser_client.h:144:7: note: template is declared here
class BinderRegistryWithArgs;
This commit is contained in:
samartnik
2022-10-13 16:19:59 -04:00
committed by Emerick Rogul
parent 2676bc16d8
commit 5c73cc388d
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -59,6 +59,7 @@ include_rules = [
"+services/proxy_resolver/public/mojom",
"+services/resource_coordinator/public/cpp",
"+services/resource_coordinator/public/mojom",
"+services/service_manager/public/cpp",
"+services/strings",
"+third_party/boringssl/src/include",
"+third_party/crashpad",
+1
View File
@@ -113,6 +113,7 @@
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
#include "net/base/registry_controlled_domains/registry_controlled_domain.h"
#include "net/cookies/site_for_cookies.h"
#include "services/service_manager/public/cpp/binder_registry.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_registry.h"
#include "third_party/blink/public/common/loader/url_loader_throttle.h"
#include "third_party/blink/public/mojom/webpreferences/web_preferences.mojom.h"