#ifndef CONTENT_COMMON_CONTENT_CONSTANTS_INTERNAL_H_
#define CONTENT_COMMON_CONTENT_CONSTANTS_INTERNAL_H_
#include <stddef.h>
#include <stdint.h>
#include "base/time/time.h"
#include "build/build_config.h"
#include "content/common/content_export.h"
namespace content {
#if BUILDFLAG(IS_ANDROID)
constexpr base::TimeDelta kHungRendererDelay = base::Seconds(5);
#else
constexpr base::TimeDelta kHungRendererDelay = …;
#endif
extern const size_t kMaxLengthOfDataURLString;
CONTENT_EXPORT extern const int kTraceEventBrowserProcessSortIndex;
CONTENT_EXPORT extern const int kTraceEventRendererProcessSortIndex;
CONTENT_EXPORT extern const int kTraceEventPpapiProcessSortIndex;
CONTENT_EXPORT extern const int kTraceEventPpapiBrokerProcessSortIndex;
CONTENT_EXPORT extern const int kTraceEventGpuProcessSortIndex;
CONTENT_EXPORT extern const int kTraceEventRendererMainThreadSortIndex;
CONTENT_EXPORT extern const char kFrameAcceptHeaderValue[];
extern const int kChildProcessReceiverAttachmentName;
extern const int kChildProcessHostRemoteAttachmentName;
extern const int kLegacyIpcBootstrapAttachmentName;
}
#endif