1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include "root.h" namespace WebCore { enum SinkID : uint8_t { ArrayBufferSink = 0, TextSink = 1, FileSink = 2, HTMLRewriterSink = 3, HTTPResponseSink = 4, HTTPSResponseSink = 5, }; static constexpr unsigned numberOfSinkIDs = 6; }