#ifndef CONTENT_SERVICES_AUCTION_WORKLET_AUCTION_V8_INSPECTOR_UTIL_H_
#define CONTENT_SERVICES_AUCTION_WORKLET_AUCTION_V8_INSPECTOR_UTIL_H_
#include <stdint.h>
#include <string>
#include <vector>
#include "content/common/content_export.h"
#include "v8/include/v8-inspector.h"
namespace auction_worklet {
CONTENT_EXPORT std::vector<uint8_t> GetStringBytes(
const v8_inspector::StringView& s);
inline std::vector<uint8_t> GetStringBytes(v8_inspector::StringBuffer* s) { … }
inline v8_inspector::StringView ToStringView(const std::string& str) { … }
}
#endif