#ifndef CONTENT_COMMON_CONTENT_CONSTANTS_INTERNAL_H_
#define CONTENT_COMMON_CONTENT_CONSTANTS_INTERNAL_H_
#include <stddef.h>
#include <stdint.h>
#include "base/byte_count.h"
#include "build/build_config.h"
#include "content/common/content_export.h"
#include "media/media_buildflags.h"
namespace content {
inline constexpr base::ByteCount kMaxLengthOfDataURLString = base::MiB(20);
#if BUILDFLAG(ARKWEB_HEIF_SUPPORT)
#if BUILDFLAG(ENABLE_AV1_DECODER)
inline constexpr char kFrameAcceptHeaderValue[] =
"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,"
"image/heif,image/webp,image/apng,*/*;q=0.8";
#else
inline constexpr char kFrameAcceptHeaderValue[] =
"text/html,application/xhtml+xml,application/xml;q=0.9,image/heif,"
"image/webp,image/apng,*/*;q=0.8";
#endif
#else
#if BUILDFLAG(ENABLE_AV1_DECODER)
inline constexpr char kFrameAcceptHeaderValue[] =
"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,"
"image/webp,image/apng,*/*;q=0.8";
#else
inline constexpr char kFrameAcceptHeaderValue[] =
"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,"
"image/apng,*/*;q=0.8";
#endif
#endif
inline constexpr int kChildProcessReceiverAttachmentName = 0;
inline constexpr int kChildProcessHostRemoteAttachmentName = 1;
inline constexpr int kLegacyIpcBootstrapAttachmentName = 2;
}
#endif