net: Remove dependency on mojo

This commit is contained in:
klzgrad 2024-05-12 22:51:35 +08:00
parent ecbafe992c
commit 4dc15c8eba
3 changed files with 5 additions and 5 deletions

View File

@ -1610,7 +1610,7 @@ component("net") {
configs += [ "//build/config/compiler:optimize_max" ]
}
if (!is_cronet_build) {
if (false) {
deps += [ "//mojo/public/cpp/bindings:default_construct_tag" ]
}
}

View File

@ -15,7 +15,7 @@
#include "net/cookies/cookie_util.h"
#include "net/cookies/site_for_cookies.h"
#if !BUILDFLAG(CRONET_BUILD)
#if 0
#include "mojo/public/cpp/bindings/default_construct_tag.h"
#endif
@ -47,7 +47,7 @@ CookiePartitionKey::SerializedCookiePartitionKey::TopLevelSite() const {
return top_level_site_;
}
#if !BUILDFLAG(CRONET_BUILD)
#if 0
CookiePartitionKey::CookiePartitionKey(mojo::DefaultConstruct::Tag) {}
#endif
bool CookiePartitionKey::SerializedCookiePartitionKey::has_cross_site_ancestor()

View File

@ -16,7 +16,7 @@
#include "net/base/schemeful_site.h"
#include "url/gurl.h"
#if !BUILDFLAG(CRONET_BUILD)
#if 0
#include "mojo/public/cpp/bindings/default_construct_tag.h"
#endif
@ -58,7 +58,7 @@ class NET_EXPORT CookiePartitionKey {
static AncestorChainBit BoolToAncestorChainBit(bool val);
CookiePartitionKey() = delete;
#if !BUILDFLAG(CRONET_BUILD)
#if 0
explicit CookiePartitionKey(mojo::DefaultConstruct::Tag);
#endif
CookiePartitionKey(const CookiePartitionKey& other);