#ifndef V8_PROFILER_OUTPUT_STREAM_WRITER_H_
#define V8_PROFILER_OUTPUT_STREAM_WRITER_H_
#include <algorithm>
#include <string>
#include "include/v8-profiler.h"
#include "src/base/logging.h"
#include "src/base/strings.h"
#include "src/base/vector.h"
#include "src/common/globals.h"
#include "src/utils/memcopy.h"
namespace v8 {
namespace internal {
template <int bytes>
struct MaxDecimalDigitsIn;
template <>
struct MaxDecimalDigitsIn<1> { … };
template <>
struct MaxDecimalDigitsIn<4> { … };
template <>
struct MaxDecimalDigitsIn<8> { … };
class OutputStreamWriter { … };
}
}
#endif